:root {
  --bg: #09090b;
  --fg: #fafafa;
  --muted: #a1a1aa;
  --paper: #09090b;
  --paper-alt: #0c0c0e;
  --card: #141416;
  --chip: #18181b;
  --ink: #fafafa;
  --ink-2: #d4d4d8;
  --ink-3: #a1a1aa;
  --line: #3f3f46;
  --line-2: #52525b;
  --accent: #dfe104;
  --accent-dark: #dfe104;
  --accent-ink: #09090b;
  --accent-fg: #09090b;
  --accent-soft: rgba(223, 225, 4, 0.16);
  --accent-line: #dfe104;
  --hot: #ff2d2d;
  --cyan: #5ce1ff;
  --violet: #c4b5fd;
  --border: 3px;
  --ease: 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --header: 72px;
  --z-skip: 1000;
  --z-overlay: 80;
  --z-header: 50;
  --z-tape: 20;
  --z-dock: 40;

  --radius: 0;
  --radius-sm: 0;
  --radius-btn: 0;
  --font-sans: "Space Grotesk", system-ui, sans-serif;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
  --container: 1160px;
  --header-h: 72px;
  --topbar-h: 40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font-display);
  background: var(--bg);
  color: var(--ink-2);
  line-height: 1.55;
  font-size: 1.125rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:not(.btn):not(.card):not(.brand):not(.cta):not(.ghost):not(.head-cta):not(.prog):not(.nav-link):not(.footer-col a):not(.explore-card):not(.skip-link):not(.skip):not(.prog-jump a):not(.path-pick):not(.hub-node):hover { color: var(--accent); }
button { font: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--accent-soft); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: var(--z-skip);
  background: var(--accent);
  color: var(--accent-ink);
  padding: 12px 16px;
  border-radius: 0;
  font-weight: 700;
  font-size: 14px;
}
.skip-link:focus { top: 12px; color: var(--accent-ink); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Topbar ── */
.topbar {
  background: var(--accent-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-note {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pulse-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.topbar-link { color: rgba(255, 255, 255, 0.82); transition: color 0.15s; }
.topbar-link:hover { color: #fff; }
.topbar-divider { width: 1px; height: 12px; background: rgba(255, 255, 255, 0.2); }

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
  transition: box-shadow 0.2s;
}

.header.scrolled { box-shadow: 0 4px 20px rgba(20, 18, 16, 0.06); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.brand-mark svg { width: 19px; height: 19px; }
.brand-text em { font-style: normal; color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  transition: color 0.15s, background 0.15s;
}

.nav-link:hover { color: var(--ink); background: var(--chip); }
.nav-link.active {
  color: var(--accent);
  font-weight: 600;
  background: var(--accent-soft);
}

.nav-explore { position: relative; }
.nav-explore-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font: inherit;
}
.nav-explore-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  padding: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px rgba(20, 18, 16, 0.1);
  z-index: 120;
}
.nav-explore.open .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  min-height: 40px;
}
.nav-dropdown a:hover { background: var(--paper-alt); color: var(--ink); }

.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 0;
  border: var(--border) solid var(--fg);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
  cursor: pointer;
  touch-action: manipulation;
}

.btn-primary { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.btn-primary:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }

.btn-ghost {
  border: var(--border) solid var(--fg);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: var(--fg); color: var(--bg); }

.btn-light { background: var(--accent); color: var(--accent-ink); border: var(--border) solid var(--accent); }
.btn-light:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }

.btn-outline-light {
  border: var(--border) solid var(--fg);
  color: var(--fg);
  background: transparent;
}

.btn-outline-light:hover { background: var(--fg); color: var(--bg); }

.btn-lg { padding: 14px 28px; font-size: 15px; }

/* ── Hero ── */
.catalog-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
  background: var(--paper);
  border-bottom: var(--border) solid var(--fg);
}

.hero-inner { max-width: 780px; }

.hero-title,
.page-hero-title,
.prog-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 16px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-sub,
.page-hero-sub {
  max-width: 600px;
  color: var(--ink-3);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-top: 4px;
}

.stat-sep { width: 1px; height: 42px; background: var(--line); }

.trusted {
  margin-top: 36px;
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}

.trusted-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  white-space: nowrap;
}

.trusted-names {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.trusted-names span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-3);
}

.page-hero {
  padding: 56px 0 48px;
  background: var(--paper);
  border-bottom: var(--border) solid var(--fg);
}

/* ── Filters ── */
.filters-wrap {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: var(--bg);
  border-bottom: var(--border) solid var(--fg);
  padding: 14px 0;
}

.filters-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filters::-webkit-scrollbar { display: none; }

.filter-pill {
  padding: 7px 16px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  border: var(--border) solid var(--line);
  background: var(--card);
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.filter-pill:hover { color: var(--ink); border-color: var(--fg); }

.filter-pill.active {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.showing-count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  white-space: nowrap;
}

/* ── Programs ── */
.programs-section { padding: 56px 0 8px; background: var(--paper); }
.programs-section-alt { background: var(--paper-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.programs-section:last-of-type { padding-bottom: 72px; }

.section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.section-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
  white-space: nowrap;
  color: var(--ink);
}

.section-rule { flex: 1; height: 1px; background: var(--line); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 16px;
}

/* ── Card ── */
.card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 0;
  background: var(--card);
  border: var(--border) solid var(--fg);
  transition: background var(--ease), color var(--ease);
}

.card:hover {
  background: var(--accent);
  color: var(--accent-ink);
}

.card.reveal { opacity: 0; }

.card.reveal.in {
  animation: rise 0.5s ease-out both;
  animation-delay: var(--d, 0ms);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.card-mark {
  width: 28px;
  height: 28px;
  border-radius: 0;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card-duration {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: lowercase;
  color: var(--ink-3);
  padding: 4px 9px;
  border: var(--border) solid var(--line);
  border-radius: 0;
  white-space: nowrap;
  background: transparent;
}

.card-fee {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--accent-ink);
  padding: 4px 9px;
  border-radius: 0;
  white-space: nowrap;
  background: var(--accent);
  border: var(--border) solid var(--accent);
}

.card:hover .card-title,
.card:hover .card-desc,
.card:hover .card-duration,
.card:hover .topic {
  color: var(--accent-ink);
}

.card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: flex-end;
}

.badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: var(--border) solid var(--line);
  background: transparent;
  color: var(--ink-3);
}

.badge-orange { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.badge-green { background: transparent; color: var(--cyan); border-color: var(--cyan); }

.card-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--ink);
}

.card-desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.card-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.topic {
  font-size: 12.5px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper-alt);
  color: var(--ink-3);
  border: 1px solid var(--line);
}

.topic-more {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 6px;
  color: var(--accent);
}

.card-footer {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.card-cta {
  width: 100%;
  min-height: 44px;
  justify-content: space-between;
}
.card-cta svg { width: 16px; height: 16px; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--accent);
  transition: gap 0.2s;
}

.card-link svg { width: 15px; height: 15px; color: var(--accent); }
.card-link:hover { gap: 10px; text-decoration: underline; text-underline-offset: 3px; }

/* ── Empty state ── */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: var(--ink-3);
  font-size: 14px;
}

.empty-state svg { width: 36px; height: 36px; margin: 0 auto 12px; opacity: 0.45; }

/* ── CTA band ── */
.cta-band {
  background: var(--bg);
  color: var(--fg);
  padding: 64px 0;
  border-top: var(--border) solid var(--fg);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--fg);
}

.cta-sub {
  color: var(--muted);
  font-size: 15px;
  max-width: 460px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-phone {
  flex-basis: 100%;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

.cta-phone a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.cta-phone a:hover { color: var(--fg); }

/* ── Footer ── */
.footer {
  border-top: var(--border) solid var(--fg);
  padding-top: 0;
  background: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 32px 28px;
  padding-bottom: 44px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-3);
  padding: 4px 0;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--accent); }

.footer-addr, .footer-hours {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.6;
  margin-top: 10px;
}

.footer-hours { margin-top: 4px; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  transition: color 0.15s, border-color 0.15s;
  padding: 0;
}

.footer-social a:hover { color: var(--accent); border-color: var(--accent-line); }
.footer-social svg { width: 15px; height: 15px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-3);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--ink-3); transition: color 0.15s; }
.footer-legal a:hover { color: var(--accent); }

.card.hidden { display: none; }

@media (min-width: 769px) {
  .nav-explore:hover .nav-dropdown,
  .nav-explore:focus-within .nav-dropdown { display: block; }
}

/* ── Career path homepage ── */
.path-hero {
  padding: 64px 0 56px;
  background:
    radial-gradient(900px 380px at 85% 0%, var(--accent-soft), transparent 55%),
    var(--card);
  border-bottom: 1px solid var(--line);
}

.path-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 40px;
  align-items: center;
}

.path-badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--chip);
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.path-hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 18px;
}

.path-hero-title span { color: var(--accent-dark); }

.path-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 22px;
}

.path-hero-copy { max-width: 560px; }

.os-rail {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 28px;
}

.os-rail li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}

.os-rail span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-dark);
  background: var(--chip);
  padding: 4px 7px;
  border-radius: 6px;
}

.hub-orbit {
  stroke: var(--accent-soft);
  stroke-width: 1.5;
}

.hub-spoke {
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 5 7;
  opacity: 0.7;
  animation: hub-dash 12s linear infinite;
}

@keyframes hub-dash {
  to { stroke-dashoffset: -120; }
}

@keyframes hub-pulse {
  0%, 100% { box-shadow: 0 16px 40px rgba(30, 58, 138, 0.28); }
  50% { box-shadow: 0 18px 48px rgba(37, 99, 235, 0.42); }
}

.path-panel.is-enter {
  animation: panel-in 0.28s ease-out;
}

@keyframes panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.path-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }

.path-hero-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
}

.py-hub {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.py-hub-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.py-hub-lines line {
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 4 6;
  opacity: 0.55;
}

.hub-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 108px;
  height: 108px;
  border-radius: 28px;
  background: linear-gradient(160deg, #60A5FA, var(--accent-dark));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(30, 58, 138, 0.28);
  animation: hub-pulse 3.2s ease-in-out infinite;
  z-index: 2;
}

.hub-core-mark { font-family: var(--font-mono); font-size: 22px; font-weight: 700; }
.hub-core-label { font-size: 12px; font-weight: 600; opacity: 0.9; }

.hub-node {
  position: absolute;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.hub-node:hover, .hub-node.is-active {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.hub-node-1 { top: 4%; left: 50%; transform: translateX(-50%); }
.hub-node-2 { top: 50%; right: 0; transform: translateY(-50%); }
.hub-node-3 { bottom: 4%; left: 50%; transform: translateX(-50%); }
.hub-node-4 { top: 50%; left: 0; transform: translateY(-50%); }

.path-choose { padding: 56px 0 48px; background: var(--paper); }
.path-choose .path-studio-title { margin-bottom: 8px; }
.path-choose .path-studio-lead { margin-bottom: 28px; max-width: 560px; }

.path-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.path-card-grid--more {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 8px;
}

.path-more-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 28px 0 12px;
}

.path-pick {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 8px;
  padding: 22px;
  min-height: 220px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.path-pick:hover, .path-pick.is-active {
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
}

.path-pick:hover { transform: translateY(-3px); }

.path-pick--compact { min-height: 160px; }

.path-pick-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--chip);
  color: var(--accent-dark);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.path-pick-icon svg { width: 18px; height: 18px; }

.path-pick-title { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; }
.path-pick-tagline { font-size: 13px; color: var(--ink-3); line-height: 1.5; flex: 1; }
.path-pick-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.path-pick-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-top: 4px;
}

.path-studio { padding: 48px 0 72px; background: var(--card); border-top: 1px solid var(--line); }

.path-studio-head { max-width: 640px; margin-bottom: 32px; }
.path-studio-title { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 8px; }
.path-studio-lead { font-size: 16px; color: var(--ink-3); line-height: 1.6; }

.path-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.path-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.path-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
  padding: 12px 14px;
  min-height: 52px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink-3);
  cursor: pointer;
}

.path-tab-name { font-size: 14px; font-weight: 600; color: inherit; }
.path-tab-meta { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }

.path-tab:hover { background: var(--chip); color: var(--ink); }
.path-tab.is-active {
  background: var(--paper);
  border-color: var(--line);
  color: var(--ink);
}
.path-tab.is-active .path-tab-meta { color: var(--accent-dark); }

.path-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.path-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}

.path-panel-title { font-size: 26px; font-weight: 700; letter-spacing: -0.03em; color: var(--ink); }
.path-panel-tagline { font-size: 16px; color: var(--ink-2); margin-top: 6px; line-height: 1.5; }
.path-time {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
  background: var(--chip);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.path-for { font-size: 14px; color: var(--ink-3); margin: 16px 0 12px; }
.path-for span { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-dark); margin-right: 8px; }
.path-foundation-inline { font-size: 14px; color: var(--ink-2); line-height: 1.6; margin-bottom: 20px; padding: 14px 16px; background: var(--card); border-radius: var(--radius-sm); border: 1px solid var(--line); }

.path-steps { list-style: none; }
.path-step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.path-step-n {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  padding-top: 2px;
}
.path-step-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.path-step-body { font-size: 14px; color: var(--ink-2); line-height: 1.65; }

.path-panel-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.path-stats {
  background: var(--paper-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.path-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.path-stats-grid strong { display: block; font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }
.path-stats-grid span { font-size: 13px; color: var(--ink-3); }

.path-flow { padding: 56px 0; background: var(--card); }

.path-flow-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  counter-reset: flow;
}

.path-flow-grid li {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.path-flow-grid strong { display: block; font-size: 16px; color: var(--ink); margin-bottom: 8px; }
.path-flow-grid p { font-size: 14px; color: var(--ink-3); line-height: 1.55; }

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .path-card-grid, .path-card-grid--more { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar-note { font-size: 11px; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(20, 18, 16, 0.08);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 16px;
    gap: 2px;
    display: none;
  }

  .nav.open { display: flex; }
  .nav-link { padding: 12px 14px; min-height: 44px; }
  .nav-cta { margin-left: 0; margin-top: 10px; width: 100%; }
  .nav-toggle { display: flex; }
  .nav-explore { width: 100%; }
  .nav-explore-toggle { width: 100%; justify-content: space-between; }
  .nav-dropdown {
    position: static;
    min-width: 0;
    box-shadow: none;
    border: none;
    background: var(--paper);
    margin: 0 0 4px;
    display: none;
  }
  .nav-explore.open .nav-dropdown { display: block; }
  .filters { width: 100%; flex-wrap: wrap; }
  .filter-pill { min-height: 40px; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { min-height: 44px; }

  .catalog-hero, .page-hero { padding: 40px 0 48px; }
  .hero-stats { gap: 24px; }
  .stat-sep { display: none; }
  .filters-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .path-hero { padding: 48px 0 40px; }
  .path-hero-grid, .path-layout, .path-stats-grid, .path-flow-grid, .path-card-grid, .path-card-grid--more { grid-template-columns: 1fr; }
  .path-tabs { position: static; flex-direction: row; overflow-x: auto; gap: 8px; padding-bottom: 8px; }
  .path-tab { min-width: max-content; }
  .path-panel { padding: 22px 18px; }
  .py-hub { max-width: 320px; }
  .hub-node { font-size: 11px; padding: 6px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .card.reveal { opacity: 1; }
  .hub-spoke, .hub-core { animation: none !important; }
  .path-pick:hover { transform: none; }
  .path-panel.is-enter { animation: none; }
}

.path-pick-icon svg { width: 18px; height: 18px; }
.mentor-avatar {
  width: 56px; height: 56px; border-radius: 50%; margin-bottom: 14px;
  background: var(--accent-dark); color: #fff; font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}

.curriculum-tree { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.curr-level { border: 1px solid var(--line); border-radius: 12px; background: var(--card); overflow: hidden; }
.curr-level > summary, .curr-module > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; font-weight: 700; font-size: 15px; color: var(--ink);
}
.curr-level > summary::-webkit-details-marker,
.curr-module > summary::-webkit-details-marker { display: none; }
.curr-level > summary::after, .curr-module > summary::after {
  content: ""; margin-left: auto; width: 8px; height: 8px; flex-shrink: 0;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(45deg); transition: transform 0.15s;
}
.curr-level[open] > summary::after, .curr-module[open] > summary::after { transform: rotate(225deg); translate: 0 3px; }
.curr-level > summary { background: var(--chip); }
.curr-level-body { padding: 8px 12px 14px; }
.curr-module { border: 1px solid #BFDBFE; border-radius: 10px; margin: 8px 0; background: #fff; }
.curr-module > summary { font-size: 14px; font-weight: 600; }
.curr-topics { list-style: none; margin: 0 16px 12px 28px; padding: 4px 0 8px; border-left: 2px solid #BFDBFE; }
.curr-topics li { position: relative; padding: 8px 0 8px 20px; font-size: 14px; color: var(--ink-2); line-height: 1.45; }
.curr-topics li::before {
  content: ""; position: absolute; left: -5px; top: 14px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--accent); border: 2px solid #fff; box-shadow: 0 0 0 1px #BFDBFE;
}


/* === v5 chrome + home story === */
.ticker {
  display: flex;
  overflow: hidden;
  border-bottom: var(--border) solid var(--fg);
  background: var(--hot);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  gap: 2.5rem;
  padding: 10px 0;
  animation: marquee 28s linear infinite;
  min-width: max-content;
}

.ticker span {
  padding: 0 4px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.site-head {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: stretch;
  min-height: var(--header);
  background: var(--bg);
  border-bottom: var(--border) solid var(--fg);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--accent-fg);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
}

.brand em {
  font-style: normal;
  color: var(--accent);
}

.head-cta,
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0 22px;
  border-left: var(--border) solid var(--fg);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.head-cta {
  background: var(--accent);
  color: var(--accent-fg);
}

.head-cta:hover,
.head-cta:active {
  background: var(--fg);
}

.nav-toggle {
  flex-direction: column;
  gap: 6px;
  background: var(--paper);
  color: var(--bg);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: currentColor;
}

.menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  display: none;
  background: var(--accent);
  color: var(--accent-fg);
  padding: 88px 24px 32px;
  overflow: auto;
}

.menu.is-open {
  display: block;
}

.menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-width: 48px;
  min-height: 48px;
  border: var(--border) solid var(--bg);
  font-weight: 700;
}

.menu nav {
  display: grid;
  gap: 0;
}

.menu a {
  display: block;
  padding: 18px 0;
  border-bottom: var(--border) solid var(--bg);
  text-decoration: none;
  font-size: clamp(1.75rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.menu a:hover,
.menu a:active {
  background: var(--bg);
  color: var(--accent);
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}

.hero {
  position: relative;
  border-bottom: var(--border) solid var(--fg);
  overflow: hidden;
}

.hero-stamp {
  position: absolute;
  top: 20px;
  right: 4%;
  z-index: 2;
  width: min(110px, 22vw);
  height: min(110px, 22vw);
  border: 3px solid var(--hot);
  color: var(--hot);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(12deg);
  background: rgba(9, 9, 11, 0.55);
}

.hero h1 {
  margin: 0;
  padding: clamp(1.25rem, 3vh, 2.25rem) 1.5rem 1rem;
  font-size: clamp(1.85rem, 8vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero h1 .strike {
  text-decoration: line-through;
  text-decoration-thickness: 0.08em;
  color: var(--muted);
}

.hero h1 .hl {
  background: var(--accent);
  color: var(--accent-fg);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-rail {
  display: grid;
  grid-template-columns: 1fr;
  border-top: var(--border) solid var(--fg);
}

.hero-copy,
.hero-act {
  padding: 28px 24px 32px;
}

.hero-copy p {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-act {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: var(--border) solid var(--fg);
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    #141416 8px,
    #141416 9px
  );
}

.cta,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: var(--border) solid var(--fg);
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.cta {
  background: var(--accent);
  color: var(--accent-fg);
  border-color: var(--accent);
}

.cta:hover,
.cta:active {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.ghost {
  background: transparent;
}

.ghost:hover,
.ghost:active {
  background: var(--fg);
  color: var(--bg);
}

.cta:active,
.ghost:active,
.tower:active,
.prog:active {
  transform: translate(3px, 3px);
}

.demand {
  position: relative;
  border-bottom: var(--border) solid var(--fg);
}

.demand-head {
  display: grid;
  gap: 12px;
  padding: 28px 24px 20px;
  border-bottom: var(--border) solid var(--fg);
}

.kicker {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.demand-head h2 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.demand-head p {
  margin: 0;
  max-width: 46rem;
  color: var(--muted);
}

.chart-stage {
  position: relative;
  min-height: min(92vh, 920px);
  display: grid;
  grid-template-columns: 52px 1fr;
  background: #050506;
}

.year-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 6px;
  border-right: var(--border) solid var(--fg);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
  color: var(--muted);
}

.towers {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  min-height: min(92vh, 920px);
}

.tower {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 48px;
  padding: 0;
  border-right: var(--border) solid var(--fg);
  text-align: left;
  overflow: hidden;
}

.tower:last-child {
  border-right: 0;
}

.tower-fill {
  display: block;
  width: 100%;
  height: 8%;
  background: var(--bar, var(--accent));
  background-image: var(--hatch);
  transform-origin: bottom;
  transition: height 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.tower.is-on .tower-fill,
.chart-stage.is-drawn .tower-fill {
  height: var(--h);
}

.tower-meta {
  position: absolute;
  inset: 12px 10px auto;
  z-index: 2;
  pointer-events: none;
}

.tower-pct {
  display: block;
  font-size: clamp(1.4rem, 4.2vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.tower-name {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: horizontal-tb;
}

.tower[data-id="ds"] {
  --bar: var(--accent);
  --hatch: repeating-linear-gradient(90deg, transparent 0 10px, rgba(0, 0, 0, 0.12) 10px 12px);
  color: var(--accent-fg);
}

.tower[data-id="sec"] {
  --bar: var(--hot);
  --hatch: repeating-linear-gradient(-45deg, transparent 0 8px, rgba(0, 0, 0, 0.2) 8px 10px);
  color: #fff;
}

.tower[data-id="rs"] {
  --bar: var(--violet);
  --hatch: repeating-linear-gradient(0deg, transparent 0 10px, rgba(0, 0, 0, 0.12) 10px 12px);
  color: var(--bg);
}

.tower[data-id="sw"] {
  --bar: var(--cyan);
  --hatch: repeating-linear-gradient(45deg, transparent 0 8px, rgba(0, 0, 0, 0.12) 8px 10px);
  color: var(--bg);
}

.tower[data-id="all"] {
  --bar: #3f3f46;
  --hatch: repeating-linear-gradient(90deg, transparent 0 4px, rgba(0, 0, 0, 0.35) 4px 6px);
  color: var(--fg);
}

.tower[data-id="ds"] .tower-meta,
.tower[data-id="all"] .tower-meta {
  color: var(--fg);
}

.tower[data-id="ds"].is-on .tower-meta {
  color: var(--accent-fg);
}

.tower:hover .tower-fill,
.tower:focus-visible .tower-fill {
  filter: brightness(1.08);
}

.tower.is-on {
  outline: 3px solid var(--fg);
  outline-offset: -3px;
  z-index: 3;
}

.year-tape {
  position: absolute;
  left: 52px;
  right: 0;
  top: 62%;
  z-index: var(--z-tape);
  pointer-events: none;
  background: var(--accent);
  color: var(--accent-fg);
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 12px;
  font-size: clamp(0.9rem, 3vw, 1.6rem);
  mix-blend-mode: screen;
}

.demand-readout {
  display: grid;
  gap: 8px;
  padding: 20px 24px 28px;
  background: var(--paper);
  color: var(--bg);
  border-top: var(--border) solid var(--fg);
}

.demand-readout strong {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.demand-readout p {
  margin: 0;
  max-width: 52rem;
}

.demand-readout a {
  color: var(--bg);
  font-weight: 700;
}

.sr-table-wrap {
  padding: 0 24px 28px;
  background: var(--paper);
  color: var(--bg);
}

.sr-table-wrap h3 {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th,
td {
  border: 2px solid var(--bg);
  padding: 10px 12px;
  text-align: left;
}

th {
  background: var(--bg);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.honest {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: var(--border) solid var(--fg);
}

.honest article {
  padding: 32px 24px;
}

.honest h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.honest ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.honest li {
  padding: 14px 0;
  border-bottom: 2px solid var(--line);
}

.yes {
  background: var(--accent);
  color: var(--accent-fg);
}

.no {
  background: var(--bg);
}

.no li {
  border-bottom-color: var(--line);
}

.progs {
  border-bottom: var(--border) solid var(--fg);
}

.progs-head {
  padding: 28px 24px 8px;
}

.progs-head h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 7vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.prog-list {
  display: grid;
}

.prog {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
  text-decoration: none;
  border-top: var(--border) solid var(--fg);
  min-height: 72px;
}

.prog:hover,
.prog:active {
  background: var(--accent);
  color: var(--accent-fg);
}

.prog-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
}

.prog:hover .prog-num {
  color: var(--accent-fg);
}

.prog-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.prog-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-align: right;
}

.call {
  display: grid;
  border-bottom: var(--border) solid var(--fg);
}

.call-copy {
  padding: 36px 24px;
}

.call-copy h2 {
  margin: 8px 0 16px;
  font-size: clamp(2.4rem, 9vw, 5.5rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.call-steps {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.call-steps li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 2px solid var(--line);
}

.call-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-block {
  padding: 28px 24px 36px;
  background: var(--hot);
  color: #fff;
  border-top: var(--border) solid var(--fg);
}

.contact-block a {
  color: #fff;
  font-weight: 700;
}

.contact-block p {
  margin: 0 0 8px;
}

.site-foot {
  padding: 28px 24px 120px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
}

.site-foot a {
  color: var(--fg);
}

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-dock);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: var(--border) solid var(--fg);
}

.dock a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px;
}

.dock-call {
  background: var(--accent);
  color: var(--accent-fg);
}

.dock-wa {
  background: var(--fg);
  color: var(--bg);
}

@media (min-width: 768px) {
  .hero-rail {
    grid-template-columns: 1.4fr 1fr;
  }

  .hero-act {
    border-top: 0;
    border-left: var(--border) solid var(--fg);
  }

  .honest {
    grid-template-columns: 1fr 1fr;
  }

  .honest .no {
    border-left: var(--border) solid var(--fg);
  }

  .call {
    grid-template-columns: 1.3fr 0.9fr;
  }

  .contact-block {
    border-top: 0;
    border-left: var(--border) solid var(--fg);
  }

  .prog {
    grid-template-columns: 80px 1fr auto;
    padding: 22px 28px;
  }

  .dock {
    display: none;
  }

  .site-foot {
    padding-bottom: 36px;
  }
}

@media (min-width: 1024px) {
  .brand {
    padding: 0 28px;
  }

  .hero h1 {
    padding-left: 28px;
    font-size: clamp(2.25rem, 6vw, 4.25rem);
  }

  .demand-head,
  .hero-copy,
  .hero-act,
  .progs-head,
  .call-copy,
  .honest article {
    padding-left: 28px;
    padding-right: 28px;
  }

  .tower-name {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.78rem;
    margin-top: 14px;
    max-height: 46vh;
  }
}

@media (max-width: 640px) {
  .chart-stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .year-axis {
    writing-mode: horizontal-tb;
    transform: none;
    flex-direction: row;
    border-right: 0;
    border-bottom: var(--border) solid var(--fg);
    padding: 10px 12px;
  }

  .towers {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .tower {
    min-height: 92px;
    border-right: 0;
    border-bottom: var(--border) solid var(--fg);
    flex-direction: row;
    align-items: stretch;
  }

  .tower-fill {
    width: 8%;
    height: 100% !important;
    transition: width 700ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .chart-stage.is-drawn .tower-fill,
  .tower.is-on .tower-fill {
    width: var(--h);
    height: 100% !important;
  }

  .tower-meta {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 14px;
    color: var(--fg) !important;
  }

  .year-tape {
    left: 0;
    top: auto;
    bottom: 0;
    mix-blend-mode: normal;
  }

  .prog {
    grid-template-columns: 40px 1fr;
  }

  .prog-meta {
    grid-column: 2;
    text-align: left;
  }

  .head-cta span {
    display: none;
  }

  .head-cta::after {
    content: "Call";
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-track,
  .tower-fill,
  .cta,
  .ghost,
  .tower,
  .prog {
    animation: none;
    transition: none;
  }

  .cta:active,
  .ghost:active,
  .tower:active,
  .prog:active {
    transform: none;
  }
}

.site-foot .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 28px;
  margin-bottom: 24px;
  text-align: left;
}
.site-foot .footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-foot .footer-col h4 {
  margin: 0 0 4px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-foot .footer-brand p {
  margin: 8px 0 0;
  max-width: 28rem;
  color: var(--muted);
}
.explore-card,
.prog-salary-card,
.mentor-card,
.faq-item,
.curriculum-list li {
  border-radius: 0 !important;
  border-width: 3px;
}
.explore-card:hover {
  background: var(--accent);
  color: var(--accent-ink);
  transform: none;
  box-shadow: none;
}
.form-group .required { color: var(--hot); }
@media (max-width: 900px) {
  .site-foot .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .site-foot .footer-grid { grid-template-columns: 1fr; }
}

/* Hero: rem-capped type so browser zoom-out reveals more page (vw-only type stays viewport-tall). */
.is-home .hero h1 {
  padding: clamp(1.25rem, 3vh, 2.25rem) 1.5rem 1rem;
  font-size: clamp(1.85rem, 8vw, 4.25rem);
  line-height: 0.86;
}
.is-home .hero-stamp {
  width: min(110px, 22vw);
  height: min(110px, 22vw);
  top: 20px;
  right: 4%;
}
.is-home .hero-copy,
.is-home .hero-act {
  padding: 20px 24px;
  min-width: 0;
}
.is-home .hero-act .cta,
.is-home .hero-act .ghost {
  white-space: normal;
  text-align: center;
  width: 100%;
}
.is-home .demand .chart-stage,
.is-home .towers {
  min-height: min(62vh, 640px);
}
@media (max-width: 640px) {
  .is-home .demand .chart-stage,
  .is-home .towers { min-height: 0; }
}
