/* AI Career Academy studio chrome — original, not a clone of another institute */
:root {
  --st-ink: #111;
  --st-paper: #fff;
  --st-grid: #ececec;
  --st-yellow: #f5c400;
  --st-blue: #2f5aa8;
  --st-red: #e23b2b;
  --st-green: #2e7d32;
  --st-orange: #ef6c00;
  --st-hard: 4px 4px 0 #111;
  --st-sans: "Nunito", "Space Grotesk", system-ui, sans-serif;
  --st-serif: "Playfair Display", Georgia, serif;
}

body.studio {
  --bg: #ffffff;
  --fg: #111111;
  --muted: #4a4a4a;
  --paper: #ffffff;
  --paper-alt: #f6f4ee;
  --card: #ffffff;
  --chip: #f3f3f3;
  --ink: #111111;
  --ink-2: #2a2a2a;
  --ink-3: #4a4a4a;
  --line: #d8d8d8;
  --line-2: #c4c4c4;
  --accent-ink: #111111;
  font-family: var(--st-sans);
  background: var(--st-paper);
  color: var(--st-ink);
  background-image:
    linear-gradient(var(--st-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--st-grid) 1px, transparent 1px);
  background-size: 28px 28px;
}
body.studio .h-scribble,
body.studio h1, body.studio h2, body.studio h3 {
  color: #111;
}

body.studio .ticker { display: none; }

.studio-head {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 22px;
  background: #fff;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  user-select: none;
  -webkit-user-select: none;
}
.studio-head .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; }
.studio-head .brand-mark {
  width: 36px; height: 36px; background: var(--st-yellow); color: #111;
  display: grid; place-items: center; font-size: .75rem; font-weight: 800; border: 2px solid #111;
}
.pill-nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.pill-nav a {
  text-decoration: none;
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
  font-size: .86rem;
  font-weight: 700;
  color: #333;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.pill-nav .login { border: 1.5px solid #ddd; }

.h-scribble {
  text-align: center;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}
.scratch {
  display: block;
  width: 96px;
  height: 14px;
  margin: 0 auto 22px;
  overflow: visible;
}
.scratch path {
  fill: none;
  stroke: #e23b2b;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-dasharray: 90;
  animation: scratch-draw 2.4s ease-in-out infinite alternate;
}
@keyframes scratch-draw {
  from { stroke-dashoffset: 90; transform: translateX(-2px); }
  to { stroke-dashoffset: 0; transform: translateX(2px); }
}
@media (prefers-reduced-motion: reduce) {
  .scratch path { animation: none; stroke-dashoffset: 0; }
}

.playfield {
  position: relative;
  min-height: min(88vh, 780px);
  overflow: hidden;
  background: #fff;
}
#gridCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block; cursor: crosshair;
}
.play-copy {
  position: relative; z-index: 2; pointer-events: none;
  display: grid; place-content: center; min-height: min(88vh, 780px);
  text-align: center; gap: 12vh; padding: 88px 16px 40px;
}
.mix {
  margin: 0;
  font-weight: 400;
  font-size: clamp(1.55rem, 4vw, 3rem);
  line-height: 1.25;
}
.mix em { font-family: var(--st-serif); font-style: italic; font-weight: 600; }
.mix.ringed {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  padding: 18px 28px;
  border: 3px solid #111;
  border-radius: 50%;
  box-shadow: 6px 6px 0 rgba(0,0,0,.08);
}
.live-pill {
  pointer-events: auto;
  display: inline-block;
  margin: 0 auto;
  background: #fff;
  border: 3px solid #111;
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 800;
  box-shadow: 4px 4px 0 #111;
  animation: bob 2.8s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .live-pill { animation: none; }
}

.st-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 20px 48px;
  text-align: center;
}
.st-stats strong { display: block; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.st-stats span { color: #555; font-size: .92rem; }
.dot {
  width: 22px; height: 22px; border-radius: 50%; border: 3px solid #111;
  box-shadow: 3px 3px 0 #111; margin: 0 auto 8px; display: block;
}
.dot.d1 { background: var(--st-blue); }
.dot.d2 { background: var(--st-yellow); }
.dot.d3 { background: var(--st-green); }
.dot.d4 { background: var(--st-red); }

.band { padding: 52px 20px; max-width: 1180px; margin: 0 auto; }
.center-copy { max-width: 44rem; margin: 0 auto 28px; text-align: center; color: #333; }

.mat-wrap {
  background: #1b5e20;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 40px 16px 56px;
}
.paper-sheet {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  background: #f7f1e4;
  padding: 36px 20px 40px;
  box-shadow: 0 16px 0 rgba(0,0,0,.12);
}
.paper-sheet::after {
  content: "";
  position: absolute;
  right: 0; bottom: 0;
  width: 70px; height: 70px;
  background: linear-gradient(135deg, transparent 50%, #cfc3ae 50%);
  box-shadow: -8px -8px 12px rgba(0,0,0,.12);
}
.offer-five {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 12px;
}
.offer-five article {
  border-radius: 16px;
  padding: 16px 12px 18px;
  min-height: 280px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offer-five h3 { margin: 0; font-size: 1.05rem; }
.offer-five p { margin: 0; font-size: .88rem; line-height: 1.45; margin-top: auto; }
.offer-five .fig {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  max-height: 148px;
  min-height: 96px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 4px 0;
  border-radius: 10px;
}
.offer-five .c1 { background: #2f5aa8; }
.offer-five .c2 { background: #f5c400; color: #111; }
.offer-five .c3 { background: #2e7d32; }
.offer-five .c4 { background: #e57373; color: #111; }
.offer-five .c5 { background: #263238; }
.mat-cta { display: flex; justify-content: center; margin-top: 28px; }

.btn-yellow, .btn-black {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 10px 22px;
  border: 2px solid #111; border-radius: 999px;
  font-weight: 800; text-decoration: none; box-shadow: 3px 3px 0 #111;
  font-family: inherit; cursor: pointer;
}
.btn-yellow { background: var(--st-yellow); color: #111; }
.btn-black { background: #111; color: #fff; }
.btn-yellow:hover, .btn-black:hover { transform: translate(1px,1px); box-shadow: 2px 2px 0 #111; }

.why-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}
.why-pills span {
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  font-size: .88rem;
  box-shadow: 3px 3px 0 #111;
  animation: bob 3.2s ease-in-out infinite;
}
.why-pills span:nth-child(odd) { animation-delay: .4s; }
.p-red { background: #e23b2b; }
.p-yel { background: #ef6c00; }
.p-grn { background: #2e7d32; }
.p-blu { background: #1565c0; }

.course-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.course-card {
  border: 3px solid #111;
  border-radius: 18px;
  box-shadow: var(--st-hard);
  padding: 20px 16px;
  color: #fff;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.course-card h3 { margin: 0 0 6px; }
.course-card .sub { margin: 0 0 12px; font-weight: 700; opacity: .92; }
.course-card ul { margin: 0 0 16px; padding-left: 1.1rem; flex: 1; }
.course-card.red { background: #e23b2b; }
.course-card.green { background: #2e7d32; }
.course-card.yellow { background: #f5c400; color: #111; }
.course-card.blue { background: #1565c0; }
.course-card.orange { background: #ef6c00; }
.course-card.navy { background: #1a237e; }
.course-card.teal { background: #00695c; }
.course-card.purple { background: #6a1b9a; }
.course-card.rust { background: #bf360c; }
.course-card.hidden, .card.hidden { display: none !important; }
.script-label { font-family: var(--st-serif); font-style: italic; font-size: 1.35rem; margin: 8px 0 14px; }

.sched {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
}
.sched div {
  border: 2px solid #111; border-radius: 14px; box-shadow: var(--st-hard);
  padding: 12px 8px; text-align: center; font-weight: 800; background: #fff;
}
.sched .h.b { background: #1565c0; color: #fff; }
.sched .h.y { background: #f5c400; }
.sched .h.g { background: #2e7d32; color: #fff; }
.sched .h.o { background: #e23b2b; color: #fff; }
.sched .green-t { color: #2e7d32; }
.sched .blue-t { color: #1565c0; }

.hire-heading {
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  font-weight: 800;
}
.hire-band {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.hire-band > .h-scribble,
.hire-band > .scratch,
.hire-band > .center-copy,
.hire-band > .hire-sectors,
.hire-band > .hire-note,
.hire-band > .role-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.hire-band > .scratch { padding-left: 0; padding-right: 0; }
.hire-band > .logo-marquee { margin-left: 0; margin-right: 0; }
.hire-sectors { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 20px; }
.hire-sectors span {
  border: 2px solid #111; padding: 8px 14px; border-radius: 999px; font-weight: 800; background: #fff;
}
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.role-grid article {
  background: #fff; border: 2px solid #111; border-radius: 14px; box-shadow: var(--st-hard); padding: 16px;
}
.role-grid h3 { margin: 0 0 6px; }
.role-grid p { margin: 0; color: #444; font-size: .92rem; }
.playfield-short,
.playfield-short .play-copy {
  min-height: min(42vh, 380px);
  gap: 6vh;
}

.logo-marquee {
  overflow: hidden;
  margin: 12px 0 28px;
  min-height: 148px;
  border-top: 3px solid #111;
  border-bottom: 3px solid #111;
  background: #efece3;
  background-image:
    linear-gradient(#d9d4c8 1px, transparent 1px),
    linear-gradient(90deg, #d9d4c8 1px, transparent 1px);
  background-size: 22px 22px;
  padding: 22px 0;
}
.logo-track {
  display: flex;
  width: max-content;
  min-height: 110px;
  animation: stamp-scroll 36s linear infinite;
}
.logo-marquee:hover .logo-track,
.logo-marquee:focus-within .logo-track {
  animation-play-state: paused;
}
.logo-set {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0 22px 0 0;
  align-items: center;
}
.logo-set li {
  flex: none;
  background: #fffdf7;
  border: 3px solid #111;
  box-shadow: 5px 5px 0 #111;
}
.logo-set img {
  display: block;
  height: 104px;
  width: auto;
  min-width: 200px;
}
@keyframes stamp-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
  .logo-marquee { overflow-x: auto; }
}

.clip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 12px;
}
.clip-card {
  background: #fff; border: 2px solid #111; box-shadow: var(--st-hard); padding: 0 12px 16px; position: relative;
}
.clip-card .stripe { height: 14px; margin: 0 -12px 14px; }
.clip-card .clip {
  position: absolute; top: 6px; right: 10px; width: 14px; height: 22px;
  border: 2px solid #333; border-radius: 4px 4px 8px 8px; background: #ddd;
}
.s-blue { background: #1565c0; }
.s-or { background: #ef6c00; }
.s-gr { background: #2e7d32; }
.s-bk { background: #111; }
.s-ye { background: #f5c400; }

.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.quotes article {
  background: #fff; border: 2px solid #111; border-radius: 16px; box-shadow: var(--st-hard); padding: 16px;
}
.quotes img {
  width: 72px; height: 72px; object-fit: cover; border-radius: 50%; border: 2px solid #111; margin-bottom: 10px;
}
.quotes p { margin: 0 0 10px; }
.quotes strong { display: block; }

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.notes-grid article {
  background: #fff; border: 2px solid #111; box-shadow: var(--st-hard); border-radius: 14px; padding: 16px;
}
.notes-grid time { color: #e23b2b; font-size: .8rem; font-weight: 800; }

.enquire-bar {
  background: #fff;
  border-top: 3px solid #111;
  padding: 28px 16px 40px;
}
.enquire-bar h2 { margin: 0 0 16px; }
.enquire-row {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-end; max-width: 1100px; margin: 0 auto;
}
.enquire-row .field { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 140px; }
.enquire-row label { font-weight: 800; font-size: .82rem; color: #111; }
.enquire-row input, .enquire-row select {
  min-height: 46px; border: 2px solid #111; border-radius: 999px; padding: 8px 14px;
  background: var(--st-yellow); font: inherit; box-shadow: 3px 3px 0 #111;
}
.enquire-row .consent { flex-basis: 100%; font-size: .85rem; color: #444; }
.form-status { min-height: 1.2em; font-weight: 800; color: var(--st-green); }

.offer-ui {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 20px;
  align-items: start;
}
.offer-tabs { display: flex; flex-direction: column; gap: 8px; }
.offer-tabs button {
  text-align: left;
  border: 0;
  border-radius: 12px;
  padding: 12px 14px 12px 40px;
  background: #f3f3f3;
  color: #111;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  position: relative;
}
.offer-tabs button::before {
  content: "→";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ef6c00;
  color: #fff;
  font-size: 11px;
  display: grid;
  place-items: center;
  line-height: 1;
}
.offer-tabs button.is-on { background: #ef6c00; color: #fff; }
.offer-tabs button.is-on::before { background: #fff; color: #ef6c00; }
.offer-panel { background: #f7fbff; border-radius: 16px; padding: 22px 24px 28px; min-height: 320px; }
.offer-panel[hidden] { display: none; }
.offer-panel h3 { margin: 0 0 6px; font-size: 1.35rem; color: #111; }
.offer-panel .offer-track { margin: 0 0 12px; font-weight: 800; color: #ef6c00; font-size: .88rem; }
.offer-panel .offer-lead { margin: 0 0 16px; color: #333; line-height: 1.55; }
.offer-panel h4 { margin: 16px 0 8px; font-size: 1.02rem; color: #111; }
.offer-panel ul { margin: 0 0 4px; padding-left: 1.15rem; }
.offer-panel li { margin: 0 0 6px; color: #222; line-height: 1.45; }
.offer-panel .offer-out { margin: 18px 0 0; padding-top: 12px; border-top: 2px solid #111; font-weight: 700; color: #111; }

.studio-foot {
  background: #111; color: #eee;
  padding: 40px 24px 110px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 20px;
}
.studio-foot a { color: #ddd; text-decoration: none; display: block; margin: 6px 0; }
.studio-foot .copy { text-align: center; color: #888; border-top: 1px solid #333; padding-top: 16px; }
.brand-word { font-weight: 800; letter-spacing: .04em; }

.studio-dock {
  position: fixed; right: 14px; bottom: 14px; z-index: 60;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}
.chat-pop {
  background: #fff; border: 2px solid #111; border-radius: 12px; padding: 8px 12px;
  text-align: left; cursor: pointer; font-family: inherit; box-shadow: var(--st-hard);
}
.dock-cta {
  background: var(--st-yellow); color: #111; font-weight: 800; text-decoration: none;
  border: 2px solid #111; padding: 12px 18px; box-shadow: var(--st-hard);
  white-space: nowrap;
}

.page-hero, .catalog-hero, .prog-hero, .register-section, .page-content, .cta-band, .mentors-grid-section {
  background: transparent;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 40px;
}
.contact-split .box {
  border: 2px solid #111; border-radius: 14px; background: #e3f2fd; padding: 20px;
}
.contact-split iframe { width: 100%; min-height: 280px; border: 0; border-radius: 12px; }

body.studio .site-head { display: none; }
body.studio .site-foot { display: none; }
body.studio .menu {
  background: #fff;
  color: #111;
  z-index: 400;
  overflow: auto;
}

body.studio .menu-close {
  position: fixed;
  top: max(20px, calc(env(safe-area-inset-top, 0px) + 16px));
  right: max(16px, calc(env(safe-area-inset-right, 0px) + 16px));
  z-index: 401;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 16px;
  border: 2px solid #111;
  border-radius: 12px;
  background: var(--st-yellow);
  color: #111;
  box-shadow: var(--st-hard);
  font-family: var(--st-sans);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

body.studio .menu-close-x {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 0.8;
}

body.studio .menu-close:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}

.vs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.vs-row article {
  border: 3px solid #111;
  border-radius: 18px;
  box-shadow: 8px 8px 0 #111;
  padding: 22px 20px;
  color: #fff;
  min-height: 240px;
}
.vs-theirs { background: #1565c0; }
.vs-ours { background: #2e7d32; }
.vs-row h3 { margin: 0 0 14px; font-size: 1.35rem; }
.vs-row ul { margin: 0; padding-left: 1.15rem; display: grid; gap: 10px; }
.vs-row li { font-weight: 700; line-height: 1.4; }

body.studio .chart-stage {
  background: #111;
  color: #f5f5f5;
  border: 3px solid #111;
  border-radius: 12px;
  overflow: hidden;
}
body.studio .lane {
  color: #f5f5f5;
  border-bottom-color: #333;
}
body.studio .lane-name,
body.studio .lane-pct,
body.studio .lane-scale,
body.studio .lane-scale-label,
body.studio .lane-scale-end,
body.studio .lane-scale-ticks {
  color: #f5f5f5;
}
body.studio .demand-readout,
body.studio .sr-table-wrap {
  background: #fff;
  color: #111;
  border-top: 3px solid #111;
}
body.studio .demand-readout a { color: #1565c0; }

body.studio .cta-band {
  background: #111;
  color: #fff;
  border-top: 3px solid #111;
}
body.studio .cta-title { color: #fff; }
body.studio .cta-sub, body.studio .cta-phone { color: #ddd; }
body.studio .mentor-card {
  background: #fff;
  border: 2px solid #111;
  box-shadow: var(--st-hard);
  border-radius: 14px;
}
body.studio .mentor-name, body.studio .mentor-role, body.studio .mentor-focus { color: #111; }
body.studio .prog-jump { background: #fff; color: #111; }
body.studio .prog-jump a { color: #111; background: #fff; border: 2px solid #111; border-radius: 999px; padding: 6px 12px; }
body.studio .prog-curriculum.band,
body.studio .page-hero.band,
body.studio .register-section {
  background: transparent;
  color: #111;
}

#market-shift { padding-bottom: 48px; }
.shift-board,
.country-board,
.supply-board {
  background: #fff;
  color: #111;
  border: 3px solid #111;
  border-radius: 14px;
  box-shadow: var(--st-hard);
  margin: 0 auto 28px;
  max-width: 1120px;
  overflow: hidden;
}
.shift-board.js-reveal,
.country-board.js-reveal,
.supply-board.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.shift-board.is-in,
.country-board.is-in,
.supply-board.is-in {
  opacity: 1;
  transform: none;
}
.shift-head {
  background: #1a3d6e;
  color: #fff;
  text-align: left;
  padding: 22px 28px 20px;
}
.shift-kicker {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d7e8fb;
}
body.studio .shift-head h3 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #fff;
}
.shift-lead {
  margin: 0;
  padding: 18px 28px 6px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #1a1a1a;
  max-width: 70ch;
}
.shift-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px 24px 8px;
}
.shift-kpi {
  background: #f3f7fb;
  border: 2px solid #111;
  border-radius: 12px;
  padding: 18px 20px 16px;
  text-align: left;
}
.shift-kpi-label {
  margin: 0 0 14px;
  color: #1a3d6e;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.shift-kpi-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}
.shift-kpi-row:last-child { margin-bottom: 0; }
.shift-kpi-caption {
  font-size: 1.02rem;
  line-height: 1.4;
  color: #1a1a1a;
  font-weight: 600;
  flex: 1;
  min-width: 0;
}
.shift-stat {
  font-size: clamp(1.85rem, 2.6vw, 2.55rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #102a4c;
  line-height: 1.1;
  white-space: nowrap;
  flex-shrink: 0;
}
.shift-stat.up { color: #145c38; }
.shift-stat.down { color: #8a1515; }
.shift-stat.muted { color: #1a3d6e; }
.shift-stat-unit {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #145c38;
}
.shift-viz {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  padding: 12px 24px 8px;
}
.shift-viz-card {
  border: 2px solid #111;
  border-radius: 12px;
  padding: 18px 20px 16px;
  background: #fff;
}
.shift-viz-title {
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #102a4c;
}
.prem-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.prem-row {
  display: grid;
  grid-template-columns: minmax(7.5rem, 9.5rem) 1fr minmax(4.2rem, auto);
  align-items: center;
  gap: 12px;
}
.prem-name {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}
.prem-track {
  display: block;
  height: 28px;
  background: #e8eef5;
  border-radius: 6px;
  overflow: hidden;
}
.prem-bars i {
  display: block;
  height: 100%;
  border-radius: 6px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.prem-bars .b25 { width: 45%; background: #2f6fb3; }
.prem-bars .b56 { width: 100%; background: #1a7a4c; }
.is-in .prem-bars i { transform: scaleX(1); }
.prem-val {
  font-size: 1.15rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #102a4c;
  text-align: right;
}
.gauge-wrap { text-align: center; }
.gauge { max-width: 280px; margin: 0 auto; }
.gauge svg { width: 100%; height: auto; }
.gauge .g-track {
  fill: none;
  stroke: #d5dde8;
  stroke-width: 12;
  stroke-linecap: round;
}
.gauge .g-fill {
  fill: none;
  stroke: url(#gaugeGrad);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  transition: stroke-dashoffset 1.1s ease;
}
.is-in .gauge .g-fill { stroke-dashoffset: 42; }
.gauge-readout {
  margin: -8px 0 4px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #102a4c;
  line-height: 1.1;
}
.gauge-caption {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}

.country-board,
.supply-board { padding: 22px 22px 16px; }
.country-board h3,
.supply-board h3 {
  margin: 0 0 8px;
  text-align: center;
  font-size: 1.35rem;
}
.supply-sub { text-align: center; color: #555; margin: 0 0 12px; }
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0 0 16px;
}
.chart-legend .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.dot.inv { background: #4f83c4; }
.dot.co { background: #c4b0e0; }
.dot.jobs { background: #f0b27a; }
.dot.sw { background: #4a148c; }
.dot.hw { background: #8e24aa; }
.dot.sv { background: #ce93d8; }
.country-chart {
  background:
    repeating-linear-gradient(90deg, transparent, transparent calc(20% - 1px), #ececec calc(20% - 1px), #ececec 20%);
  padding: 8px 8px 0 0;
}
.c-row {
  display: grid;
  grid-template-columns: minmax(92px, 150px) 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.c-name { font-size: 0.82rem; font-weight: 700; text-align: right; }
.c-bar {
  display: flex;
  height: 22px;
  background: transparent;
}
.c-bar i {
  display: block;
  height: 100%;
  width: var(--w);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.c-row:nth-child(1) i { transition-delay: 0.05s; }
.c-row:nth-child(2) i { transition-delay: 0.1s; }
.c-row:nth-child(3) i { transition-delay: 0.15s; }
.c-row:nth-child(4) i { transition-delay: 0.2s; }
.c-row:nth-child(5) i { transition-delay: 0.25s; }
.c-row:nth-child(6) i { transition-delay: 0.3s; }
.c-row:nth-child(7) i { transition-delay: 0.35s; }
.c-row:nth-child(8) i { transition-delay: 0.4s; }
.c-row:nth-child(9) i { transition-delay: 0.45s; }
.c-row:nth-child(10) i { transition-delay: 0.5s; }
.is-in .c-bar i { transform: scaleX(1); }
.c-bar .inv { background: #4f83c4; }
.c-bar .co { background: #c4b0e0; }
.c-bar .jobs { background: #f0b27a; }
.c-axis {
  display: grid;
  grid-template-columns: minmax(92px, 150px) 1fr;
  gap: 10px;
  margin: 8px 0 4px;
  font-size: 0.72rem;
  color: #666;
}
.c-axis-ticks { display: flex; justify-content: space-between; }

.supply-chart {
  overflow-x: auto;
  padding: 8px 4px 0;
}
.supply-plot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  min-width: 640px;
  height: 280px;
  border-left: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  padding: 8px 8px 0 12px;
  background: repeating-linear-gradient(#f7f7f7, #f7f7f7 1px, transparent 1px, transparent 31px);
}
.s-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  min-width: 0;
}
.s-val {
  font-size: 0.68rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: #4a148c;
}
.s-stack {
  width: 70%;
  max-width: 42px;
  height: var(--h);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.s-col:nth-child(odd) .s-stack { transition-delay: 0.08s; }
.s-col:nth-child(even) .s-stack { transition-delay: 0.16s; }
.is-in .s-stack { transform: scaleY(1); }
.s-stack i { display: block; width: 100%; }
.s-stack .sw { height: var(--p); background: #4a148c; }
.s-stack .hw { height: var(--p); background: #8e24aa; }
.s-stack .sv { height: var(--p); background: #ce93d8; }
.s-year { font-size: 0.68rem; font-weight: 700; margin-top: 8px; color: #333; }
.supply-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  background: #6a1b9a;
  color: #fff;
  padding: 14px 16px;
  font-weight: 700;
}
.chart-src {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.45;
  margin: 12px 16px 14px;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  .shift-board.js-reveal,
  .country-board.js-reveal,
  .supply-board.js-reveal,
  .prem-bars i,
  .c-bar i,
  .s-stack,
  .gauge .g-fill {
    transition: none;
  }
  .shift-board.js-reveal,
  .country-board.js-reveal,
  .supply-board.js-reveal {
    opacity: 1;
    transform: none;
  }
  .prem-bars i,
  .c-bar i,
  .s-stack { transform: none; }
  .gauge .g-fill { stroke-dashoffset: 42; }
}

@media (max-width: 1100px) {
  .shift-kpis, .shift-viz { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .pill-nav { display: none; }
  .offer-five .fig { max-height: 200px; min-height: 140px; }
  .st-stats, .offer-five, .course-row, .sched, .role-grid, .clip-grid, .quotes, .notes-grid, .offer-ui, .contact-split, .foot-grid, .vs-row, .shift-kpis, .shift-viz {
    grid-template-columns: 1fr;
  }
  .sched { grid-template-columns: 1fr 1fr; }
  .clip-grid, .quotes, .notes-grid, .role-grid, .course-row { grid-template-columns: 1fr; }
  .play-copy { min-height: 70vh; gap: 8vh; }
  .shift-head, .shift-lead { padding-left: 18px; padding-right: 18px; }
  .shift-kpis, .shift-viz { padding-left: 14px; padding-right: 14px; }
  .prem-row { grid-template-columns: minmax(6.5rem, 8rem) 1fr minmax(3.8rem, auto); }
  .c-row, .c-axis { grid-template-columns: 88px 1fr; }
}
