/* ═══════════════════════════════════════════
   progress.css — In Progress section
   ═══════════════════════════════════════════ */

.in-progress {
  padding: 120px 0;
  background: var(--navy);
  border-top: 1px solid rgba(10,10,15,0.12);
  border-bottom: 1px solid rgba(10,10,15,0.12);
}
.in-progress .section-header h2 { color: #F5F3EE; }
.in-progress .section-tag { color: var(--terra2); }

.progress-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; padding: 0 clamp(24px, 6vw, 80px);
}

.progress-card {
  border: 1px solid var(--border2); border-radius: var(--r);
  padding: 40px; position: relative; overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.progress-card:hover {
  border-color: rgba(27,58,107,0.45); transform: translateY(-4px);
}
.progress-card.wip {
  background: #162032; border-color: rgba(255,255,255,0.08);
}
.progress-card.cert {
  background: linear-gradient(135deg, #162032 0%, rgba(74,144,217,0.08) 100%);
  border-color: rgba(255,255,255,0.08);
}

/* Animated shimmer bar — top of every card */
.progress-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--terra), var(--terra2), var(--terra));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
/* Orbital card gets a brighter blue shimmer */
.progress-card.cert::before {
  content: '';
  background: linear-gradient(90deg, var(--terra2), #7BB8F0, var(--terra2));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.wip-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.wip-badge {
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #F0EBE0; display: inline-flex; align-items: center; gap: 6px;
}
.cert-badge { color: var(--terra2); }
.wip-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--terra);
  animation: pulse-anim 2s ease-in-out infinite;
}
.cert-dot { background: var(--terra2); }
.wip-eta {
  font-family: var(--mono); font-size: 0.65rem;
  color: rgba(245,243,238,0.25);
}

.progress-card h3 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: #F5F3EE; margin-bottom: 12px; letter-spacing: -0.02em;
  line-height: 1.4; overflow: visible;
}
.progress-card p {
  color: rgba(245,243,238,0.55); font-size: 0.9rem;
  line-height: 1.7; margin-bottom: 20px;
}

.wip-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 8px; margin-bottom: 24px;
}
.wip-features li {
  font-size: 0.85rem; color: rgba(245,243,238,0.45);
  padding-left: 16px; position: relative;
}
.wip-features li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--terra); font-size: 0.75rem;
}

.wip-stack { display: flex; flex-wrap: wrap; gap: 6px; }
.wip-stack span {
  font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.06em; padding: 4px 10px; border-radius: 3px;
  background: rgba(27,58,107,0.1);
  border: 1px solid rgba(27,58,107,0.25); color: var(--terra2);
}
