/* AI Operator Workshop v3 -- additive styles, loaded LAST after the cloned sprint stylesheet (css/main.css).
   Never edit css/main.css. Light theme only. Brand tokens: cobalt #2247E6, cobalt-deep #10306E, ink #14160F,
   ink-700 #4A4C3E, sub #6E7066, paper #FBFAF7, bone-100 #F6F5EE, bone-200 #EFEDE4, line #E4E2D8,
   ice #BFD3FF, lime #D3F03A, money #17A05B. */

:root {
  --wk-cobalt: #2247E6;
  --wk-cobalt-deep: #10306E;
  --wk-ink: #14160F;
  --wk-ink-700: #4A4C3E;
  --wk-sub: #6E7066;
  --wk-paper: #FBFAF7;
  --wk-bone-100: #F6F5EE;
  --wk-bone-200: #EFEDE4;
  --wk-line: #E4E2D8;
  --wk-ice: #BFD3FF;
  --wk-lime: #D3F03A;
  --wk-money: #0F7A44;
  --wk-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wk-display: var(--font-schibsted), var(--font-geist-sans), system-ui, sans-serif;
  --wk-mono: var(--font-plexmono), ui-monospace, Menlo, monospace;
}

/* -------- spacing -------- */
.wk-mt-14 { margin-top: 3.5rem; }
.wk-mt-8 { margin-top: 2rem; }

/* -------- text floors -------- */
.wk-body { font-size: 18px; line-height: 1.6; max-width: 62ch; }
.wk-card-text { font-size: 17px; line-height: 1.6; }

/* -------- headline highlight: breathes, never clips -------- */
.wk-hl {
  background-image: linear-gradient(rgba(34,71,230,.14), rgba(34,71,230,.14));
  background-repeat: no-repeat;
  background-size: 100% 78%;
  background-position: 0 62%;
  padding: 0 0.14em;
  margin: 0 -0.04em;
  border-radius: 0.12em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* =====================================================================
   [01] THE PROBLEM: two animated diagrams
   ===================================================================== */
.wk-diagram {
  background: #fff;
  border: 1px solid var(--wk-line);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 2.5px 2.5px 0 rgba(20,22,15,.08);
}
.wk-diagram-label {
  font-family: var(--wk-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wk-sub);
}
.wk-diagram-label-money { color: var(--wk-money); }
.wk-diagram-cap {
  margin-top: 1rem;
  font-family: var(--wk-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wk-sub);
  text-align: center;
}
.wk-stage {
  position: relative;
  margin-top: 1rem;
  height: 250px;
  border-radius: 0.75rem;
  background: var(--wk-bone-100);
  border: 1px solid var(--wk-line);
  overflow: hidden;
}
.wk-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--wk-ink);
  background: #fff;
  border-radius: 0.6rem;
  padding: 0.6rem 1.2rem;
  font-family: var(--wk-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--wk-ink);
  z-index: 2;
}
.wk-node-you {
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(20,22,15,0.18);
}
.is-in .wk-node-you { animation: wkPressure 3.2s ease-in-out infinite; }

/* TODAY: tasks orbit in toward YOU and stack up */
.wk-orbit {
  position: absolute;
  display: inline-block;
  background: #fff;
  border: 1px solid var(--wk-line);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-family: var(--wk-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--wk-ink);
  white-space: nowrap;
  opacity: 0;
  z-index: 1;
}
.wk-orbit { --sx: 0px; --sy: 0px; }
.wk-orbit-1 { left: calc(50% - 215px); top: calc(50% - 14px); --sx: -140px; --sy: -40px; }
.wk-orbit-2 { left: calc(50% + 75px);  top: calc(50% - 14px); --sx: 140px;  --sy: -40px; }
.wk-orbit-3 { left: calc(50% - 150px); top: calc(50% + 46px); --sx: -120px; --sy: 90px; }
.wk-orbit-4 { left: calc(50% + 40px);  top: calc(50% + 46px); --sx: 120px;  --sy: 90px; }
.wk-orbit-5 { left: calc(50% - 44px);  top: calc(50% - 76px); --sx: 0px;    --sy: -110px; }
.is-in .wk-orbit { animation: wkPile 7s var(--wk-ease) infinite; }
.is-in .wk-orbit-1 { animation-delay: 0s; }
.is-in .wk-orbit-2 { animation-delay: 0.8s; }
.is-in .wk-orbit-3 { animation-delay: 1.6s; }
.is-in .wk-orbit-4 { animation-delay: 2.4s; }
.is-in .wk-orbit-5 { animation-delay: 3.2s; }
@keyframes wkPile {
  0%   { opacity: 0; translate: var(--sx) var(--sy); }
  10%  { opacity: 1; }
  40%  { opacity: 1; translate: 0 0; }
  82%  { opacity: 1; translate: 0 0; }
  100% { opacity: 0; translate: 0 0; }
}
@keyframes wkPressure {
  0%, 100% { box-shadow: 0 0 0 0 rgba(20,22,15,0.18); }
  50% { box-shadow: 0 0 0 14px rgba(20,22,15,0); }
}

/* 4:00 PM: agent works through the tasks, hands you an approval */
.wk-stage-after {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.25rem;
}
.wk-agent-box {
  border: 2px solid var(--wk-cobalt);
  background: rgba(34,71,230,0.05);
  border-radius: 0.75rem;
  padding: 0.9rem 1rem 1rem;
  flex: 0 1 auto;
}
.wk-agent-title {
  display: block;
  font-family: var(--wk-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--wk-cobalt);
}
.wk-agent-tasks {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}
.wk-task {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--wk-line);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-family: var(--wk-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--wk-ink);
  text-align: center;
  white-space: nowrap;
}
.is-in .wk-task { animation: wkWork 4.8s ease-in-out infinite; }
.is-in .wk-task-1 { animation-delay: 0s; }
.is-in .wk-task-2 { animation-delay: 0.8s; }
.is-in .wk-task-3 { animation-delay: 1.6s; }
.is-in .wk-task-4 { animation-delay: 2.4s; }
@keyframes wkWork {
  0%, 12%  { background: #fff; color: var(--wk-ink); border-color: var(--wk-line); }
  22%, 40% { background: var(--wk-cobalt); color: #fff; border-color: var(--wk-cobalt); }
  52%, 100%{ background: rgba(15,122,68,0.10); color: var(--wk-money); border-color: rgba(15,122,68,0.45); }
}
.wk-flow {
  flex: 0 0 auto;
  width: 42px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--wk-cobalt) 0 6px, transparent 6px 12px);
  background-size: 12px 2px;
  position: relative;
}
.wk-flow::after {
  content: "";
  position: absolute;
  right: -4px; top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--wk-cobalt);
}
.is-in .wk-flow { animation: wkFlow 1s linear infinite; }
@keyframes wkFlow { to { background-position: 12px 0; } }
.wk-you-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}
.wk-node-you-small { position: static; transform: none; }
.wk-approve {
  display: inline-block;
  border: 1px solid rgba(23,160,91,0.45);
  background: rgba(23,160,91,0.10);
  color: var(--wk-money);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-family: var(--wk-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.8);
}
.is-in .wk-approve { animation: wkApprove 4.8s var(--wk-ease) infinite; }
@keyframes wkApprove {
  0%, 60% { opacity: 0; transform: scale(0.8); }
  70%, 92% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.9); }
}

/* =====================================================================
   [02] WHO THIS IS FOR
   ===================================================================== */
.wk-profile-card {
  background: #fff;
  border: 1px solid var(--wk-line);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 2.5px 2.5px 0 rgba(20,22,15,.10);
  transition: background-color 220ms var(--wk-ease), color 220ms var(--wk-ease), border-color 220ms var(--wk-ease), transform 220ms var(--wk-ease);
  cursor: default;
}
.wk-profile-mono {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--wk-cobalt);
  color: #fff;
  font-family: var(--wk-display);
  font-weight: 800;
  font-size: 1.15rem;
  transition: background-color 220ms var(--wk-ease), color 220ms var(--wk-ease);
}
.wk-profile-title {
  margin-top: 1.1rem;
  font-family: var(--wk-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  color: var(--wk-ink);
  transition: color 220ms var(--wk-ease);
}
.wk-profile-sub {
  margin-top: 0.6rem;
  font-size: 17px;
  line-height: 1.55;
  color: var(--wk-ink-700);
  transition: color 220ms var(--wk-ease);
}
.wk-profile-card:hover { background-color: var(--wk-cobalt); border-color: var(--wk-cobalt); transform: translateY(-2px); }
.wk-profile-card:hover .wk-profile-title,
.wk-profile-card:hover .wk-profile-sub { color: #fff; }
.wk-profile-card:hover .wk-profile-mono { background: #fff; color: var(--wk-cobalt); }

.wk-accent-bar {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5rem;
  background: var(--wk-cobalt);
  color: #fff;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: inset 8px 0 0 var(--wk-lime);
  padding-left: 2.5rem;
}
.wk-accent-kicker {
  font-family: var(--wk-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wk-ice);
  white-space: nowrap;
}
.wk-accent-text {
  max-width: 60ch;
  font-family: var(--wk-display);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.wk-accent-text strong { color: var(--wk-lime); font-weight: 800; }
@media (max-width: 640px) {
  .wk-accent-bar { grid-template-columns: 1fr; gap: 0.6rem; padding: 1.25rem 1.25rem; }
  .wk-accent-text { font-size: 19px; }
}

.wk-fit-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1px solid var(--wk-line);
  box-shadow: 2.5px 2.5px 0 rgba(20,22,15,.08);
}
.wk-fit-card-yes { border: 2px solid var(--wk-cobalt); }
.wk-fit-label {
  font-family: var(--wk-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.wk-fit-list { margin-top: 1rem; display: grid; gap: 0.7rem; }
.wk-fit-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 17px;
  line-height: 1.5;
  color: var(--wk-ink);
}
.wk-fit-list li::before {
  content: "";
  position: absolute;
  left: 0.15rem; top: 0.62em;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--wk-cobalt);
}
.wk-fit-list-no li { color: var(--wk-ink-700); }
.wk-fit-list-no li::before { background: #C9C7BC; }

/* =====================================================================
   [03] WHAT YOU LEAVE WITH: interactive stack
   ===================================================================== */
.wk-stack {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 1.25rem;
}
.wk-stack-nav { display: grid; gap: 0.6rem; align-content: start; }
.wk-stack-tab {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  text-align: left;
  background: #fff;
  border: 1px solid var(--wk-line);
  border-radius: 0.9rem;
  padding: 1.05rem 1.25rem;
  cursor: pointer;
  font: inherit;
  color: var(--wk-ink);
  transition: background-color 220ms var(--wk-ease), border-color 220ms var(--wk-ease), color 220ms var(--wk-ease), transform 220ms var(--wk-ease);
}
.wk-stack-tab:hover { transform: translateX(4px); border-color: var(--wk-cobalt); }
.wk-stack-num {
  font-family: var(--wk-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--wk-cobalt);
  transition: color 220ms var(--wk-ease);
}
.wk-stack-tab-title {
  font-family: var(--wk-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.wk-stack-tab.is-active { background: var(--wk-cobalt); border-color: var(--wk-cobalt); color: #fff; }
.wk-stack-tab.is-active .wk-stack-num { color: var(--wk-ice); }
.wk-stack-panels {
  position: relative;
  background: #fff;
  border: 1px solid var(--wk-line);
  border-radius: 1rem;
  box-shadow: 2.5px 2.5px 0 rgba(20,22,15,.10);
  min-height: 340px;
}
.wk-stack-panel {
  position: absolute;
  inset: 0;
  padding: 2.25rem 2.5rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 360ms var(--wk-ease), transform 360ms var(--wk-ease);
  pointer-events: none;
}
.wk-stack-panel.is-active { position: relative; opacity: 1; transform: none; pointer-events: auto; }
.wk-stack-panel-num {
  font-family: var(--wk-display);
  font-weight: 900;
  font-size: 72px;
  line-height: 0.9;
  color: var(--wk-cobalt);
  opacity: 0.18;
}
.wk-stack-panel-title {
  margin-top: 0.75rem;
  font-family: var(--wk-display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--wk-ink);
}
.wk-stack-panel-body {
  margin-top: 1rem;
  font-size: 18px;
  line-height: 1.6;
  color: var(--wk-ink-700);
  max-width: 34rem;
}
.wk-stack-panel-foot {
  margin-top: 1.25rem;
  font-family: var(--wk-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--wk-cobalt);
}
@media (max-width: 860px) {
  .wk-stack { grid-template-columns: 1fr; }
  .wk-stack-panels { min-height: 300px; }
  .wk-stack-panel { padding: 1.5rem 1.5rem; }
  .wk-stack-panel-title { font-size: 24px; }
  .wk-stack-panel-num { font-size: 56px; }
}

.wk-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--wk-line);
  border-radius: 1rem;
  box-shadow: 2.5px 2.5px 0 rgba(20,22,15,.08);
}
.wk-callout::before {
  content: "";
  width: 14px; height: 14px;
  margin-top: 0.45em;
  background: var(--wk-cobalt);
  border-radius: 3px;
}
.wk-callout p { max-width: 68ch; }

/* =====================================================================
   [04] HOW THE DAY RUNS: progression ladder
   ===================================================================== */
.wk-ladder {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: end;
  position: relative;
}
.wk-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--wk-line);
  border-radius: 1rem;
  padding: 1.75rem 1.6rem 1.6rem;
  box-shadow: 2.5px 2.5px 0 rgba(20,22,15,.10);
}
.wk-step-1 .wk-step-kicker::before { background: rgba(34,71,230,0.45); }
.wk-step-2 { margin-bottom: 2.5rem; }
.wk-step-2 .wk-step-kicker::before { background: var(--wk-cobalt); }
.wk-step-3 { margin-bottom: 5rem; }
.wk-step-3 .wk-step-kicker::before { background: var(--wk-lime); border: 1px solid rgba(20,22,15,0.25); }
.wk-step::after {
  content: "";
  position: absolute;
  right: -1.55rem;
  top: 50%;
  width: 1.4rem;
  height: 2px;
  background: var(--wk-cobalt);
  z-index: 1;
}
.wk-step::before {
  content: "";
  position: absolute;
  right: -1.6rem;
  top: calc(50% - 5px);
  border: 6px solid transparent;
  border-left: 8px solid var(--wk-cobalt);
  z-index: 2;
}
.wk-step-3::before { display: none; }
.wk-ladder::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1.25rem;
  height: 2px;
  background: linear-gradient(90deg, var(--wk-line), var(--wk-cobalt));
  opacity: 0.6;
}
.wk-step-3::after { display: none; }
.wk-step-kicker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--wk-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wk-cobalt);
}
.wk-step-kicker::before {
  content: "";
  width: 12px; height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}
.wk-step-title {
  margin-top: 0.6rem;
  font-family: var(--wk-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--wk-ink);
}
.wk-step-list { margin-top: 1rem; display: grid; gap: 0.6rem; }
.wk-step-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 17px;
  line-height: 1.5;
  color: var(--wk-ink-700);
}
.wk-step-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.72em;
  width: 9px; height: 2px;
  background: var(--wk-cobalt);
}
@media (max-width: 860px) {
  .wk-ladder { grid-template-columns: 1fr; align-items: stretch; }
  .wk-step-2, .wk-step-3 { margin-bottom: 0; }
  .wk-step::after, .wk-step::before, .wk-ladder::before { display: none; }
}

/* =====================================================================
   [05] WHY NOW: cards on the cobalt band
   ===================================================================== */
.wk-label-light { color: rgba(255,255,255,0.85) !important; }
.wk-why-card {
  background: rgba(16,48,110,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 1rem;
  padding: 1.75rem 1.6rem;
  transition: background-color 220ms var(--wk-ease), transform 220ms var(--wk-ease);
}
.wk-why-card:hover { background: rgba(16,48,110,0.75); transform: translateY(-2px); }
.wk-why-num {
  font-family: var(--wk-display);
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  color: var(--wk-lime);
}
.wk-why-title {
  margin-top: 0.9rem;
  font-family: var(--wk-display);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
}
.wk-why-body {
  margin-top: 0.7rem;
  font-size: 17px;
  line-height: 1.6;
  color: #fff;
}

/* =====================================================================
   [06] INSTRUCTOR
   ===================================================================== */
.wk-photo {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--wk-line);
  box-shadow: 6px 6px 0 var(--wk-cobalt);
  max-width: 520px;
}
.wk-photo img { display: block; width: 100%; height: auto; }
.wk-photo-tag {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: var(--wk-ink);
  color: #fff;
  font-family: var(--wk-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: 0.4rem;
}
.wk-cred-list { display: grid; gap: 0.9rem; max-width: 36rem; }
.wk-cred-list li {
  position: relative;
  padding-left: 2.2rem;
  font-size: 17px;
  line-height: 1.55;
  color: var(--wk-ink-700);
}
.wk-cred-list li strong { color: var(--wk-ink); font-weight: 700; }
.wk-cred-list li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 0.15em;
  width: 1.35rem; height: 1.35rem;
  border-radius: 999px;
  background: var(--wk-cobalt);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35rem;
  text-align: center;
}

/* =====================================================================
   FAQ (details/summary)
   ===================================================================== */
.wk-faq-list { border-top: 1px solid rgba(20,22,15,0.1); border-bottom: 1px solid rgba(20,22,15,0.1); }
.wk-faq-item { border-bottom: 1px solid rgba(20,22,15,0.1); padding: 0.4rem 0; }
.wk-faq-item:last-child { border-bottom: none; }
.wk-faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--wk-ink);
}
.wk-faq-q::-webkit-details-marker { display: none; }
.wk-faq-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.25rem; height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(20,22,15,0.15);
  position: relative;
  background: #fff;
}
.wk-faq-icon::before, .wk-faq-icon::after { content: ""; position: absolute; background: var(--wk-ink); transition: transform 200ms ease; }
.wk-faq-icon::before { width: 14px; height: 2px; }
.wk-faq-icon::after { width: 2px; height: 14px; }
.wk-faq-item[open] .wk-faq-icon::after { transform: rotate(90deg) scaleY(0); }
.wk-faq-a { padding: 0 3rem 1.4rem 0; font-size: 17px; line-height: 1.6; color: var(--wk-ink-700); max-width: 64ch; }

/* -------- reduced motion: everything settles to its final state -------- */
@media (prefers-reduced-motion: reduce) {
  .is-in .wk-orbit, .is-in .wk-task, .is-in .wk-approve, .is-in .wk-flow, .is-in .wk-node-you { animation: none; }
  .is-in .wk-orbit { opacity: 1; translate: 0 0; }
  .is-in .wk-approve { opacity: 1; transform: none; }
  .wk-stack-panel { transition: none; }
}

/* -------- mobile floors -------- */
@media (max-width: 640px) {
  .wk-body { font-size: 18px; }
  .wk-card-text { font-size: 17px; }
  .wk-stage { height: 230px; }
  .wk-stage-after { height: auto; min-height: 230px; flex-direction: column; gap: 0.75rem; padding: 1.25rem 1rem; }
  .wk-orbit { font-size: 10.5px; padding: 0.35rem 0.6rem; }
  .wk-orbit-1 { left: calc(50% - 150px); top: calc(50% - 12px); --sx: -60px; --sy: -30px; }
  .wk-orbit-2 { left: calc(50% + 58px);  top: calc(50% - 12px); --sx: 60px;  --sy: -30px; }
  .wk-orbit-3 { left: calc(50% - 112px); top: calc(50% + 48px); --sx: -50px; --sy: 60px; }
  .wk-orbit-4 { left: calc(50% + 14px);  top: calc(50% + 48px); --sx: 50px;  --sy: 60px; }
  .wk-orbit-5 { left: calc(50% - 40px);  top: calc(50% - 72px); --sx: 0px;   --sy: -60px; }
  .wk-flow { width: 2px; height: 26px; background: repeating-linear-gradient(180deg, var(--wk-cobalt) 0 6px, transparent 6px 12px); background-size: 2px 12px; }
  .wk-flow::after { right: -4px; top: auto; bottom: -4px; border: 5px solid transparent; border-top-color: var(--wk-cobalt); border-left-color: transparent; }
  .is-in .wk-flow { animation-name: wkFlowV; }
  @keyframes wkFlowV { to { background-position: 0 12px; } }
}
