/* ============================================================
   Claude Onboarding Pathway — layout + prompt sandbox styles
   Uses existing site tokens: --c-*, --font-*, --gutter, --nav-height
   ============================================================ */

/* ---- Shared ease ---- */
.dirA { --cp-ease: cubic-bezier(0.4, 0, 0.2, 1); }

/* ---- Wrapper ---- */
.dirA {
  background: var(--c-white);
  color: var(--c-black);
  font-family: var(--font-body);
}

/* ---- Hero ---- */
.dirA-hero {
  padding: 36px 0 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  border-bottom: 1px solid var(--c-grey-mid);
}
@media (min-width: 900px) {
  .dirA-hero { grid-template-columns: 1.4fr 1fr; align-items: end; }
}
.dirA-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-stone);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
}
.dirA-hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--c-black);
}
.dirA-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  text-wrap: balance;
}
.dirA-hero-title em {
  font-style: normal;
  background: var(--c-yellow);
  padding: 0 0.1em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.dirA-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid var(--c-grey-mid);
  padding-left: 24px;
}
.dirA-hero-blurb {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-black);
  margin: 0;
  max-width: 44ch;
}

/* ---- Sticky role picker bar ---- */
.dirA-role {
  position: sticky;
  top: var(--nav-height);
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--c-grey-mid);
  padding: 14px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.dirA-role__lhs {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.dirA-role__progress {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-stone);
  font-family: var(--font-display);
  font-weight: 600;
}
.dirA-role__progress strong {
  color: var(--c-black);
  margin-right: 4px;
}

/* ---- Role picker chips ---- */
.role-picker__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-stone);
  font-family: var(--font-display);
  font-weight: 600;
}
.role-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.role-chip {
  appearance: none;
  border: 1px solid var(--c-grey-mid);
  background: var(--c-white);
  color: var(--c-black);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 180ms var(--cp-ease), color 180ms var(--cp-ease), border-color 180ms var(--cp-ease);
}
.role-chip:hover { border-color: var(--c-black); }
.role-chip.is-active {
  background: var(--c-black);
  color: var(--c-white);
  border-color: var(--c-black);
}

/* ---- Stage list ---- */
.dirA-stages { padding: 0; }
.dirA-stage {
  border-bottom: 1px solid var(--c-grey-mid);
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 900px) {
  .dirA-stage { grid-template-columns: 200px 1fr; gap: 48px; }
}
.dirA-stage__rail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: calc(var(--nav-height) + 60px);
  align-self: start;
}
.dirA-stage__num {
  font-family: var(--font-display);
  font-size: 68px;
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--c-black);
  margin: 0;
}
.dirA-stage__num--done { color: var(--c-grey); }
.dirA-stage__title {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.15;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.dirA-stage__sub {
  font-size: 13px;
  color: var(--c-stone);
  margin: 0;
  max-width: 22ch;
  line-height: 1.5;
}
.dirA-stage__time {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-grey);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dirA-stage__time::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-yellow);
  flex-shrink: 0;
}
.dirA-stage__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ---- Section heading ---- */
.dirA-section-h {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-black);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-black);
}

/* ---- Prose ---- */
.dirA-prose {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-black);
  margin: 0 0 14px;
  max-width: 60ch;
}
.dirA-muted { color: var(--c-stone); }

/* ---- Step list ---- */
.dirA-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  list-style: none;
  margin: 0;
}
.dirA-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
}
.dirA-step__num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  width: 24px;
  height: 24px;
  border: 1px solid var(--c-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  margin-top: 2px;
  flex-shrink: 0;
}
.dirA-step__body { font-size: 14px; line-height: 1.55; }
.dirA-step__body strong { font-weight: 700; }
.dirA-step__body p {
  margin: 4px 0 0;
  color: var(--c-stone);
  font-size: 13px;
}
.dirA-step__body a { text-decoration: underline; }

/* ---- Video card ---- */
.dirA-video {
  display: grid;
  grid-template-columns: minmax(0, 260px) 1fr;
  gap: 16px;
  border: 1px solid var(--c-grey-mid);
  padding: 12px;
  background: var(--c-white);
  border-radius: 4px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  appearance: none;
  font-family: inherit;
  transition: border-color 180ms var(--cp-ease);
  text-decoration: none;
  color: inherit;
}
.dirA-video:hover { border-color: var(--c-black); }
.dirA-video__thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--c-grey-light);
  overflow: hidden;
  border-radius: 2px;
}
.dirA-video__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dirA-video__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dirA-video__play span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: transform 200ms var(--cp-ease);
}
.dirA-video:hover .dirA-video__play span { transform: scale(1.07); }
.dirA-video__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.dirA-video__label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-stone);
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
}
.dirA-video__title {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
}
.dirA-video__duration {
  font-size: 12px;
  color: var(--c-grey);
  margin: 2px 0 0;
}

/* Video in playing state */
.dirA-video--playing {
  display: block;
  cursor: default;
}
.dirA-video__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
  border-radius: 2px;
}
.dirA-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.dirA-video--playing .dirA-video__info {
  padding: 10px 0 0;
  flex-direction: row;
  align-items: baseline;
  gap: 12px;
}

/* ---- Tip block ---- */
/* ---- How-to instruction strip ---- */
.dirA-howto {
  display: flex;
  gap: 0;
  border: 1px solid var(--c-grey-mid);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}
.dirA-howto__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-stone);
}
.dirA-howto__item + .dirA-howto__item {
  border-left: 1px solid var(--c-grey-mid);
}
.dirA-howto__marker {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  margin-top: 1px;
}
.dirA-howto__marker--role {
  background: var(--c-black);
}
.dirA-howto__marker--slot {
  background: var(--c-yellow);
}
.dirA-howto__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-black);
  margin-bottom: 2px;
}
@media (max-width: 640px) {
  .dirA-howto { flex-direction: column; }
  .dirA-howto__item + .dirA-howto__item { border-left: none; border-top: 1px solid var(--c-grey-mid); }
}

.dirA-tip {
  border-left: 3px solid var(--c-yellow);
  padding: 11px 16px;
  background: var(--c-grey-light);
  font-size: 14px;
  line-height: 1.6;
}
.dirA-tip strong { font-weight: 700; }

/* ---- Usage rules dropdown ---- */
.dirA-rules { border: 1px solid var(--c-grey-mid); border-radius: 6px; }
.dirA-rules__summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  user-select: none;
}
.dirA-rules__summary::-webkit-details-marker { display: none; }
.dirA-rules__summary::after {
  content: '+'; font-size: 18px; font-weight: 300; line-height: 1;
  transition: transform 0.2s;
}
.dirA-rules[open] .dirA-rules__summary::after { content: '−'; }
.dirA-rules__body {
  padding: 4px 20px 20px;
  border-top: 1px solid var(--c-grey-mid);
}
.dirA-rules__intro {
  font-size: 13px; line-height: 1.6; color: var(--c-stone);
  margin: 16px 0 20px; font-style: italic;
}
.dirA-rules__group {
  font-family: var(--font-display); font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-stone);
  margin: 20px 0 10px; padding-bottom: 6px;
  border-bottom: 1px solid var(--c-grey-mid);
}
.dirA-rule { margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--c-grey-light); }
.dirA-rule:last-of-type { border-bottom: none; margin-bottom: 0; }
.dirA-rule__head { font-size: 13px; font-weight: 700; margin: 0 0 4px; }
.dirA-rule__body { font-size: 13px; line-height: 1.6; margin: 0 0 4px; color: var(--c-black); }
.dirA-rule__why { font-size: 12px; line-height: 1.55; margin: 0; color: var(--c-stone); font-style: italic; }
.dirA-rule__why strong { font-weight: 700; font-style: normal; }
.dirA-rules__footer {
  font-size: 12px; line-height: 1.6; margin: 16px 0 0;
  padding-top: 14px; border-top: 1px solid var(--c-grey-mid);
  color: var(--c-stone); font-style: italic;
}

/* ---- Connector chips ---- */
.dirA-connectors {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.dirA-connector {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border: 1px solid var(--c-grey-mid);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  background: var(--c-white);
  text-decoration: none;
  color: var(--c-black);
  transition: border-color 180ms var(--cp-ease);
}
.dirA-connector:hover { border-color: var(--c-black); background: var(--c-grey-light); }
.dirA-connector img { width: 14px; height: 14px; display: block; }

/* ---- Stage complete button ---- */
.dirA-complete {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: var(--c-black);
  color: var(--c-white);
  border: none;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 0;
  margin-top: 8px;
  align-self: start;
  cursor: pointer;
  transition: opacity 180ms;
}
.dirA-complete:hover { opacity: 0.8; }
.dirA-complete--done {
  background: var(--c-grey-light);
  color: var(--c-stone);
  cursor: default;
}
.dirA-complete--done:hover { opacity: 1; }

/* ---- Collapsed stage ---- */
.dirA-stage--collapsed {
  padding: 22px 0;
  display: block;
  border-bottom: 1px solid var(--c-grey-mid);
}
.dirA-stage-collapsed-btn {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0;
  background: transparent;
  border: none;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}
.dirA-stage-collapsed-l {
  display: grid;
  grid-template-columns: 64px 24px 1fr;
  align-items: baseline;
  gap: 20px;
  min-width: 0;
}
.dirA-stage-collapsed-num {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--c-grey);
}
.dirA-stage-collapsed-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-black);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  align-self: center;
}
.dirA-stage-collapsed-check--empty {
  visibility: hidden;
}
.dirA-stage-collapsed-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.dirA-stage-collapsed-title {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.15;
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--c-black);
}
.dirA-stage-collapsed-sub {
  font-size: 13px;
  color: var(--c-grey);
  line-height: 1.4;
}
.dirA-stage-collapsed-r {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.dirA-stage-collapsed-meta {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-grey);
  font-family: var(--font-display);
  font-weight: 600;
}
.dirA-stage-collapsed-reopen {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-black);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.dirA-stage-collapsed-btn:hover .dirA-stage-collapsed-num { color: var(--c-black); }

/* Minimise button inside expanded done stage */
.dirA-stage-collapse-btn {
  margin-top: 10px;
  background: transparent;
  border: 1px solid var(--c-grey-mid);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 0;
  cursor: pointer;
  color: var(--c-stone);
  align-self: start;
  transition: border-color 180ms, color 180ms;
}
.dirA-stage-collapse-btn:hover { border-color: var(--c-black); color: var(--c-black); }

/* ---- Pending-approval badge (collapsed + rail) ---- */
.dirA-stage-badge {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  background: #fff4cc;
  border: 1px solid #e8c840;
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b5510;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 1.4;
}
.dirA-stage-badge--rail {
  display: block;
  margin: 6px 0 4px;
  max-width: 100%;
  white-space: normal;
  line-height: 1.35;
  padding: 4px 8px;
}
@media (max-width: 640px) {
  .dirA-stage-badge { display: block; margin: 6px 0 0; width: fit-content; }
}

/* ---- Pending Legal approval banner ---- */
.dirA-pending-banner {
  margin: 24px 0 8px;
  padding: 22px 28px;
  background: #fffaf0;
  border: 1px solid #e8c840;
  border-left: 4px solid #c4a82a;
  border-radius: 4px;
}
.dirA-pending-banner__eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a6d10;
}
.dirA-pending-banner__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--c-black);
}
.dirA-pending-banner__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-black);
}
.dirA-pending-banner__body a { color: inherit; text-decoration: underline; }

/* ---- Footer CTA ---- */
.dirA-footer {
  padding: 56px 0 40px;
  text-align: center;
  border-top: 1px solid var(--c-grey-mid);
}
.dirA-footer h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.dirA-footer-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.dirA-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--c-black);
  background: var(--c-black);
  color: var(--c-white);
  text-decoration: none;
  border-radius: 0;
  transition: background 180ms, color 180ms;
}
.dirA-cta--ghost {
  background: transparent;
  color: var(--c-black);
}
.dirA-cta--ghost:hover { background: var(--c-black); color: var(--c-white); }

/* ============================================================
   Prompt Sandbox
   ============================================================ */

.ps {
  border: 1px solid var(--c-grey-mid);
  border-radius: 4px;
  background: var(--c-white);
  overflow: hidden;
}
.ps__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px 8px;
}
.ps__head-l {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.ps__label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ps__actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.ps__btn {
  border: 1px solid var(--c-grey-mid);
  background: var(--c-white);
  color: var(--c-black);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 3px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 180ms var(--cp-ease), color 180ms var(--cp-ease), border-color 180ms var(--cp-ease);
}
.ps__btn--ghost:hover { border-color: var(--c-black); }
.ps__btn--primary {
  background: var(--c-black);
  color: var(--c-white);
  border-color: var(--c-black);
}
.ps__btn--primary:hover { opacity: 0.8; }
.ps__body { padding: 4px 16px 14px; }
.ps__text {
  margin: 0;
  font-family: 'Courier New', Courier, ui-monospace, monospace;
  font-size: 12.5px;
  line-height: 1.7;
  color: #1a1a1a;
  white-space: pre-line;
}
.ps__slot {
  appearance: none;
  border: none;
  background: var(--c-yellow);
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  color: var(--c-black);
  padding: 1px 5px;
  margin: 0 1px;
  border-radius: 2px;
  outline: none;
  min-width: 4ch;
  vertical-align: baseline;
}
.ps__slot:focus {
  background: var(--c-yellow);
  box-shadow: 0 0 0 2px var(--c-black);
}
.ps__slot::placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
}
.ps__why {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--c-grey-light);
  padding: 9px 16px;
  border-top: 1px solid var(--c-grey-mid);
}
.ps__why-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-black);
  flex-shrink: 0;
  padding-top: 2px;
  white-space: nowrap;
}
.ps__why-text {
  font-size: 12px;
  line-height: 1.55;
  color: var(--c-stone);
}
.ps__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 3px;
  flex-shrink: 0;
}
.ps__badge--live {
  background: #e6f7f1;
  color: #0d7a52;
}

/* ---- Which Claude quiz ---- */
.wc-quiz {
  border-top: 1px solid var(--c-grey-mid);
  padding: 56px 0 48px;
  margin-top: 16px;
}
.wc-quiz__header {
  margin-bottom: 28px;
}
.wc-quiz__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 8px 0 10px;
  color: var(--c-black);
}
.wc-quiz__sub {
  font-size: 15px;
  color: var(--c-grey);
  max-width: 52ch;
  line-height: 1.5;
}
.wc-quiz__options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 8px;
}
.wc-quiz__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--c-off-white, #f7f7f5);
  border: 1px solid var(--c-grey-mid);
  border-radius: 8px;
  padding: 16px 18px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s;
  line-height: 1.4;
  color: var(--c-black);
}
.wc-quiz__option:hover {
  background: var(--c-white);
  border-color: var(--c-black);
}
.wc-quiz__option-arrow {
  flex-shrink: 0;
  font-size: 16px;
  color: var(--c-grey);
  transition: color 0.12s;
}
.wc-quiz__option:hover .wc-quiz__option-arrow {
  color: var(--c-black);
}
.wc-quiz__result {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  background: var(--c-black);
  color: var(--c-white);
  border-radius: 12px;
  padding: 36px 40px;
}
.wc-quiz__result-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.wc-quiz__result-name {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 4px;
  color: var(--c-white);
}
.wc-quiz__result-type {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.wc-quiz__result-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  margin-bottom: 16px;
  max-width: 52ch;
}
.wc-quiz__result-where {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wc-quiz__result-where-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.wc-quiz__result-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  padding-top: 4px;
  flex-shrink: 0;
}
.wc-quiz__reset {
  background: transparent;
  border: none;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
  transition: color 0.12s;
}
.wc-quiz__reset:hover {
  color: rgba(255,255,255,0.8);
}

/* ---- Mobile adjustments ---- */
@media (max-width: 640px) {
  .dirA-hero-meta { border-left: none; padding-left: 0; border-top: 1px solid var(--c-grey-mid); padding-top: 20px; }
  .dirA-video { grid-template-columns: 1fr; }
  .dirA-stage-collapsed-l { grid-template-columns: 48px 20px 1fr; gap: 12px; }
  .dirA-stage-collapsed-meta { display: none; }
  .dirA-role { flex-direction: column; align-items: flex-start; gap: 10px; }
}
