/* =========================================================================
   page-pipeline.css — styles unique to pilots/pipeline.html
   All tokens, canonical components (.card, .btn, .section-head, .kicker,
   .pill, .container) come from foundation.css, layout.css, design-system.css.
   ========================================================================= */

main a { color: var(--hvb-teal); text-decoration: none; }
main a:hover { text-decoration: underline; }

/* ── Textured hero (non-full-bleed) ─────────────────────────────────────── */
.hero {
  padding: 48px 0 20px;
  border-bottom: 1px solid rgba(14, 59, 46, 0.08);
}

.hero h1 {
  margin: 8px 0 10px;
  font-family: var(--font-head);
  font-size: clamp(32px, 3.6vw, 46px);
  letter-spacing: -0.03em;
}

.hero p {
  margin: 0;
  color: var(--hvb-slate);
  max-width: 72ch;
  font-size: 16px;
}

/* ── Last-updated datestamp ──────────────────────────────────────────────── */
.last-updated {
  font-size: 14px;
  color: var(--hvb-slate);
  margin-top: 6px;
}

/* ── Pipeline table (desktop) ───────────────────────────────────────────── */
.pipeline-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-1);
}

.pipeline-table th,
.pipeline-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(14, 59, 46, 0.10);
  text-align: left;
  font-size: 15px;
}

.pipeline-table th {
  background: rgba(14, 59, 46, 0.04);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  color: var(--hvb-slate);
}

.pipeline-table tbody tr:last-child td {
  border-bottom: none;
}

.pipeline-table a {
  color: var(--hvb-green);
  font-weight: 600;
}

/* ── Mobile card view ────────────────────────────────────────────────────── */
.pipeline-cards {
  display: none;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.pipeline-card {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid rgba(14, 59, 46, 0.08);
  padding: 18px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pipeline-card h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 20px;
}

.pipeline-card strong {
  display: block;
  color: var(--hvb-slate);
  margin-bottom: 4px;
  font-size: 14px;
}

.pipeline-card dl {
  margin: 0;
}

.pipeline-card dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(14, 59, 46, 0.6);
  margin-top: 8px;
  font-weight: 700;
}

.pipeline-card dd {
  margin: 0;
  color: var(--hvb-black);
  font-size: 15px;
}

/* ── CTA below table ─────────────────────────────────────────────────────── */
.pipeline-cta {
  margin-top: 12px;
}

/* ── Responsive: swap table for cards on narrow screens ──────────────────── */
@media (max-width: 840px) {
  .pipeline-table { display: none; }
  .pipeline-cards { display: flex; }
}

@media (min-width: 841px) {
  .pipeline-cards { display: none; }
}
