/* =========================================================================
   CORPORATE SOFTWARE TRAINING PROGRAMS — inner page
   Header/footer/consult are the shared components (folds.css), unmodified.
   Every content section below uses a shape none of the other inner pages
   use yet: a photo hero with an "at a glance" summary card (not a ticket
   or a bento wall), a stacked full-width "spec sheet" dossier for the three
   programs (not a 3-card grid), a plain checklist for the selling points
   (not a marquee or badge cluster), a horizontal connected path for the
   delivery modes (not a diagonal cascade), and a lettered manifest/roster
   list for who it's for (not a scattered badge cluster or icon grid).
   An earlier pass styled the hero card and the selling points as a mock
   IDE window and terminal console; dropped in favour of this page's own
   pill/badge language (matching .cs-track-dur/.cs-track-tools below) since
   the code-editor look read as generic "AI template" chrome rather than
   this site's brand.
   ========================================================================= */

/* --- hero: a real photo behind the copy + an IDE/terminal window ----------- */
.cs-hero {
  position: relative;
  padding: clamp(9rem, 18vw, 12rem) var(--gutter) clamp(4rem, 8vw, 6rem);
  background: var(--void);
  overflow: hidden;
}
.cs-hero-plate { position: absolute; inset: 0; z-index: 0; }
.cs-hero-plate img { width: 100%; height: 100%; object-fit: cover; }
.cs-hero-plate::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(var(--void-rgb), 0.55) 0%, rgba(var(--void-rgb), 0.82) 60%, var(--void) 100%),
    linear-gradient(90deg, rgba(var(--void-rgb), 0.62) 0%, transparent 55%),
    radial-gradient(50rem 30rem at 100% 100%, rgba(var(--gold-rgb), 0.1), transparent 60%);
}
.cs-hero-grid {
  position: relative;
  z-index: 1;
  max-width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.cs-crumb {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
  font-size: var(--fs-xs);
  color: var(--ink-quiet);
}
.cs-crumb a { color: var(--ink-mid); text-decoration: none; }
.cs-crumb a:hover { color: var(--ink); }
.cs-crumb b { color: var(--ink); font-weight: 600; }
.cs-hero .numbers-tag { display: inline-flex; width: fit-content; margin-bottom: clamp(1rem, 2vw, 1.5rem); }
.cs-hero-h {
  margin: 0 0 0.6rem;
  max-width: 16ch;
  font-family: var(--font-poster);
  font-size: var(--fs-hero);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
}
.cs-hero-sub {
  margin: 0 0 1.25rem;
  max-width: 34ch;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--gold);
}
.cs-hero-lead {
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
  max-width: 54ch;
  font-size: var(--fs-lead);
  line-height: 1.62;
  color: var(--ink-mid);
}
.cs-hero-ctas { display: flex; flex-wrap: wrap; gap: clamp(0.75rem, 2vw, 1.25rem); }

/* --- hero: "at a glance" summary card --------------------------------------- */
.cs-brief {
  justify-self: center;
  width: 100%;
  max-width: 460px;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border-radius: var(--r-md);
  border: var(--hair) solid rgba(var(--white-rgb), 0.16);
  background: linear-gradient(180deg, var(--surface-raised), var(--surface));
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}
.cs-brief-k {
  margin: 0 0 1.1rem;
  font-size: var(--fs-nano);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}
.cs-brief-list { margin: 0; padding: 0; list-style: none; }
.cs-brief-list li {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 0.9rem;
  padding: 1rem 0;
  border-top: var(--hair) solid rgba(var(--white-rgb), 0.1);
}
.cs-brief-list li:first-child { border-top: 0; padding-top: 0; }
.cs-brief-list li:last-child { padding-bottom: 0; }
.cs-brief-no {
  font-family: var(--font-poster);
  font-size: 1.6rem;
  line-height: 1;
  background: linear-gradient(180deg, var(--gold), var(--brand-lit));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cs-brief-list b { font-size: var(--fs-sm); font-weight: 700; color: var(--ink); }
.cs-brief-dur {
  margin-left: 0.6em;
  padding: 0.15em 0.6em;
  border-radius: var(--r-pill);
  border: var(--hair) solid rgba(var(--gold-rgb), 0.4);
  background: rgba(var(--gold-rgb), 0.1);
  font-size: var(--fs-nano);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}
.cs-brief-list p { margin: 0.3rem 0 0; font-size: var(--fs-xs); color: var(--ink-quiet); }

/* --- shared section head ----------------------------------------------------- */
.cs-h {
  margin: 0.5rem 0 0;
  font-family: var(--font-poster);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--ink);
}

/* --- available training programs: a stacked "spec sheet" dossier ----------- */
.cs-programs { padding: clamp(3rem, 6vw, 5rem) var(--gutter); background: var(--surface); }
.cs-programs-head { max-width: var(--page); margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.cs-programs-head .numbers-tag { display: inline-flex; width: fit-content; margin-bottom: 0.5rem; }
.cs-dossier { max-width: var(--page); margin: 0 auto; padding: 0; list-style: none; }
.cs-track {
  display: grid;
  grid-template-columns: clamp(4rem, 8vw, 7rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  border-bottom: var(--hair) solid rgba(var(--white-rgb), 0.12);
}
.cs-track:first-child { padding-top: 0; }
.cs-track:last-child { border-bottom: 0; padding-bottom: 0; }
/* an alternating zebra tint reads as a ledger of tracks, not a repeated card */
.cs-track:nth-child(even) { background: rgba(var(--white-rgb), 0.015); }
.cs-track-no {
  font-family: var(--font-poster);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  line-height: 1;
  background: linear-gradient(180deg, var(--gold), var(--brand-lit));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cs-track-body { display: flex; flex-direction: column; gap: 0.9rem; }
.cs-track-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1.25rem;
}
.cs-track-name {
  margin: 0;
  font-family: var(--font-poster);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--ink);
}
.cs-track-dur {
  padding: 0.3em 0.85em;
  border-radius: var(--r-pill);
  border: var(--hair) solid rgba(var(--gold-rgb), 0.4);
  background: rgba(var(--gold-rgb), 0.1);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}
.cs-track-tools {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.cs-track-tools li {
  padding: 0.35em 0.9em;
  border-radius: var(--r-pill);
  border: var(--hair) solid rgba(var(--white-rgb), 0.18);
  background: rgba(var(--white-rgb), 0.03);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
}
.cs-track-outcomes { margin: 0; max-width: 62ch; font-size: var(--fs-body); line-height: 1.6; color: var(--ink-mid); }
.cs-track-for { margin: 0; max-width: 62ch; font-size: var(--fs-sm); line-height: 1.55; color: var(--ink-quiet); }
.cs-track-for span { font-weight: 700; color: var(--ink-mid); }

/* --- key selling points: a plain checklist ---------------------------------- */
.cs-console-section { padding: clamp(3rem, 6vw, 5rem) var(--gutter); background: var(--void); }
.cs-console-head { max-width: var(--page); margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.cs-console-head .numbers-tag { display: inline-flex; width: fit-content; margin-bottom: 0.5rem; }
.cs-points {
  max-width: 44rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}
.cs-points li {
  position: relative;
  padding-left: 1.75em;
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--ink);
}
.cs-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
  background: var(--brand-lit);
}

/* --- delivery modes: a horizontal connected path --------------------------- */
.cs-modes { padding: clamp(3rem, 6vw, 5rem) var(--gutter); background: var(--surface); }
.cs-modes-head { max-width: var(--page); margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); text-align: center; }
.cs-modes-head .numbers-tag { display: inline-flex; width: fit-content; margin: 0 auto 0.5rem; }
.cs-mode-path {
  position: relative;
  max-width: var(--page);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
}
/* a single connecting line runs behind the three stops, like a signal path */
.cs-mode-path::before {
  content: '';
  position: absolute;
  top: clamp(1.1rem, 2.4vw, 1.5rem);
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, rgba(var(--brand-rgb), 0.5), rgba(var(--gold-rgb), 0.5));
  z-index: 0;
}
.cs-mode-stop {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
}
.cs-mode-no {
  display: grid;
  place-items: center;
  width: clamp(2.2rem, 4.8vw, 3rem);
  height: clamp(2.2rem, 4.8vw, 3rem);
  border-radius: 50%;
  border: 2px solid rgba(var(--gold-rgb), 0.6);
  background: var(--surface-raised);
  font-family: var(--font-poster);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gold);
}
.cs-mode-label { margin: 0; max-width: 18ch; font-size: var(--fs-sm); font-weight: 600; line-height: 1.4; color: var(--ink); }

/* --- who it's for: a lettered manifest/roster list -------------------------- */
.cs-audience { padding: clamp(3rem, 6vw, 5rem) var(--gutter); background: var(--void); }
.cs-audience-head { max-width: var(--page); margin: 0 auto clamp(2rem, 4vw, 2.75rem); }
.cs-audience-head .numbers-tag { display: inline-flex; width: fit-content; margin-bottom: 0.5rem; }
.cs-roster { max-width: 52rem; margin: 0 auto; padding: 0; list-style: none; }
.cs-roster-row {
  display: flex;
  align-items: baseline;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.1rem, 2.4vw, 1.5rem) 0;
  border-top: var(--hair) solid rgba(var(--white-rgb), 0.12);
}
.cs-roster-row:last-child { border-bottom: var(--hair) solid rgba(var(--white-rgb), 0.12); }
.cs-roster-letter {
  flex: none;
  font-family: var(--font-poster);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--brand-lit);
}
.cs-roster-label { margin: 0; font-size: var(--fs-lead); line-height: 1.5; color: var(--ink-mid); }

@media (max-width: 900px) {
  .cs-hero-grid { grid-template-columns: minmax(0, 1fr); }
  .cs-track { grid-template-columns: 1fr; gap: 0.75rem; }
}
@media (max-width: 640px) {
  .cs-mode-path { grid-template-columns: 1fr; }
  .cs-mode-path::before { top: 0; bottom: 0; left: calc(1.1rem - 1px); right: auto; width: 2px; height: auto; background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.5), rgba(var(--gold-rgb), 0.5)); }
  .cs-mode-stop { flex-direction: row; text-align: left; }
  .cs-mode-label { max-width: none; }
}
