/* Layout, typography and components. Values come from tokens.css only. */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font-sans); font-size: var(--text-base); line-height: var(--leading);
  /* Footer stays at the bottom of the viewport on short pages, and after the content on long ones. */
  min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column;
}
img, video { max-width: 100%; height: auto; }
a { color: var(--brand); text-underline-offset: 3px; }
a:hover { color: var(--brand-strong); }
h1, h2, h3 { line-height: 1.25; margin: 0 0 var(--space-3); font-weight: var(--heading-weight); letter-spacing: -0.01em; }
h1 { font-size: var(--text-2xl); }
h2 { font-size: var(--text-xl); }
h3 { font-size: var(--text-lg); }
p { margin: 0 0 var(--space-4); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: var(--radius-sm); }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }

.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: var(--space-4); top: -100px; background: var(--brand); color: var(--brand-contrast); padding: var(--space-2) var(--space-4); border-radius: var(--radius-sm); z-index: 10; }
.skip-link:focus { top: var(--space-2); }

/* ---- shell ---- */
.site-header { background: var(--surface); border-bottom: 1px solid var(--border); box-shadow: var(--shadow); position: relative; z-index: 2; }
.site-header__inner, .site-main, .site-footer__inner { max-width: var(--content-width); margin: 0 auto; padding-left: var(--space-4); padding-right: var(--space-4); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); min-height: 76px; flex-wrap: wrap; }
.brand { display: inline-flex; align-items: center; gap: var(--space-3); color: var(--text); text-decoration: none; }
.brand__logo { display: block; height: 56px; width: auto; }
.brand__label { font-weight: 600; font-size: var(--text-base); color: var(--brand); padding-left: var(--space-3); border-left: 2px solid var(--border); }
.nav { display: flex; align-items: center; gap: var(--space-5); flex-wrap: wrap; }
.nav__link { color: var(--brand); text-decoration: none; font-weight: 500; padding: var(--space-2) 0; border-bottom: 3px solid transparent; }
.nav__link:hover { color: var(--brand-strong); border-bottom-color: var(--border); }
.nav__link[aria-current="page"] { color: var(--brand-strong); border-bottom-color: var(--accent); }
.nav__user { color: var(--text-muted); font-size: var(--text-sm); }
.nav form { margin: 0; }
.site-main { flex: 1 0 auto; width: 100%; padding-top: var(--space-6); padding-bottom: var(--space-7); }
.site-main > section + section, .site-main > section + article { margin-top: var(--space-6); }
.site-footer { flex-shrink: 0; background: linear-gradient(110deg, var(--hero-from), var(--hero-via) 60%, var(--hero-to)); border-top: 4px solid var(--accent); color: var(--on-hero-muted); font-size: var(--text-sm); }
.site-footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: var(--space-3) var(--space-6); padding-top: var(--space-5); padding-bottom: var(--space-5); }
.site-footer strong { color: var(--on-hero); font-weight: 600; }
.site-footer a { color: var(--on-hero); }
.site-footer a:hover { color: var(--on-hero-muted); }
.site-footer :focus-visible { outline-color: var(--accent); }

/* ---- primitives ---- */
.button { display: inline-flex; align-items: center; gap: var(--space-2); font: inherit; font-weight: 600; padding: 11px 20px; border-radius: 0.35rem; border: 2px solid var(--brand); background: var(--brand); color: var(--brand-contrast); text-decoration: none; cursor: pointer; }
.button:hover { background: var(--brand-strong); border-color: var(--brand-strong); color: var(--brand-contrast); }
.button--secondary { background: transparent; color: var(--brand); }
.button--secondary:hover { background: var(--brand-soft); color: var(--brand-strong); }
.link-button { background: none; border: 0; padding: 0; font: inherit; color: var(--brand); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: var(--space-5); }
.button--small { padding: 6px 12px; font-size: var(--text-sm); }
@media (max-width: 600px) {
  .brand__logo { height: 44px; }
  .brand__label, .nav__user { display: none; }
  .site-header__inner { flex-wrap: nowrap; min-height: 64px; }
  .nav { gap: var(--space-3); flex-wrap: nowrap; }
}
.stack > * + * { margin-top: var(--space-4); }
.muted { color: var(--text-muted); }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: var(--text-sm); font-weight: 700; color: var(--text-muted); margin-bottom: var(--space-2); }
.prose { max-width: var(--reading-width); }
.prose img, .prose video { border-radius: var(--radius-sm); }
.notice { border-left: 4px solid var(--border); padding: var(--space-3) var(--space-4); background: var(--surface-raised); color: var(--text-muted); border-radius: var(--radius-sm); }
.error { color: var(--danger); font-weight: 600; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: var(--space-2); padding: 0; margin: 0 0 var(--space-4); font-size: var(--text-sm); }
.breadcrumbs li + li::before { content: "›"; margin-right: var(--space-2); color: var(--text-muted); }
.page-head { margin-bottom: var(--space-6); }
.page-head__meta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3); }

/* ---- forms ---- */
.form { display: grid; gap: var(--space-4); max-width: 420px; margin: var(--space-6) auto; }
.form label { display: grid; gap: var(--space-1); font-weight: 600; }
.form input { font: inherit; padding: 10px 12px; border: 2px solid var(--border); border-radius: var(--radius-sm); background: var(--surface-raised); color: var(--text); }
.form input:focus-visible { border-color: var(--brand); }

/* ---- progress ---- */
.progress { display: grid; gap: var(--space-1); }
.progress__label { display: flex; justify-content: space-between; font-size: var(--text-sm); color: var(--text-muted); }
.progress__bar { appearance: none; width: 100%; height: 10px; border: 0; border-radius: var(--radius-pill); background: var(--border); overflow: hidden; }
.progress__bar::-webkit-progress-bar { background: var(--border); border-radius: var(--radius-pill); }
.progress__bar::-webkit-progress-value { background: var(--brand); border-radius: var(--radius-pill); }
.progress__bar::-moz-progress-bar { background: var(--brand); border-radius: var(--radius-pill); }
.progress--complete .progress__bar::-webkit-progress-value { background: var(--done); }
.progress--complete .progress__bar::-moz-progress-bar { background: var(--done); }

/* ---- badges & status ---- */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 2px 10px; border-radius: var(--radius-pill); font-size: var(--text-sm); font-weight: 700; white-space: nowrap; }
.badge--learn { background: var(--learn-soft); color: var(--learn); }
.badge--practice { background: var(--practice-soft); color: var(--practice); }
.badge--milestone { background: var(--milestone-soft); color: var(--milestone); }
.badge--required { background: transparent; color: var(--text-muted); border: 1px solid var(--border); font-weight: 600; }
.status { display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-sm); font-weight: 700; color: var(--text-muted); }
.status__icon { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; border: 2px solid currentColor; font-size: 12px; line-height: 1; }
.status--complete { color: var(--done); }
.status--complete .status__icon { background: var(--done); border-color: var(--done); color: var(--surface); }
.status--in_progress { color: var(--brand); }

/* ---- path cards ---- */
.path-grid { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-5); grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.path-card { display: flex; flex-direction: column; gap: var(--space-4); height: 100%; }
.path-card__title { font-size: var(--text-lg); margin: 0; }
.path-card__title a { color: var(--text); text-decoration: none; }
.path-card__title a:hover { color: var(--brand); text-decoration: underline; }
.path-card__intro { color: var(--text-muted); margin: 0; flex: 1; }
.path-card__foot { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); flex-wrap: wrap; }

/* ---- lessons ---- */
.lesson-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); }
.lesson-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--space-4); padding: var(--space-4) var(--space-5); }
.lesson-row__number { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--brand-soft); color: var(--brand); font-weight: 700; }
.lesson-row--complete .lesson-row__number { background: var(--done-soft); color: var(--done); }
.lesson-row__title { margin: 0; font-size: var(--text-lg); }
.lesson-row__title a { color: var(--text); text-decoration: none; }
.lesson-row__title a::after { content: ""; position: absolute; inset: 0; }
.lesson-row { position: relative; }
.lesson-row:hover { border-color: var(--brand); }
.lesson-row__meta { font-size: var(--text-sm); color: var(--text-muted); margin: 0; }

/* ---- items ---- */
.item-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-2); }
.item-row { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-3) var(--space-4); border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); flex-wrap: wrap; }
.item-row--milestone { border-left: 4px solid var(--milestone); }
.item-row__title { flex: 1; min-width: 12ch; font-weight: 600; }
.item-row__kind { font-size: var(--text-sm); color: var(--text-muted); }
.item-text { padding: var(--space-2) 0; }

/* ---- item page ---- */
.item-actions { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; margin-top: var(--space-5); }
.done-toggle { display: inline-flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.done-toggle form { margin: 0; }
.pager { display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); margin-top: var(--space-6); flex-wrap: wrap; }
.file-list { list-style: none; padding: 0; display: grid; gap: var(--space-2); }
.file-list li { display: flex; gap: var(--space-3); align-items: baseline; flex-wrap: wrap; }

/* ---- video ---- */
.video-panel { margin: 0 0 var(--space-5); }
.video-panel video { display: block; width: 100%; max-height: 70vh; background: #000; border-radius: var(--radius); }
.video-panel figcaption { margin-top: var(--space-2); font-size: var(--text-sm); color: var(--text-muted); }

/* ---- htmx ---- */
.htmx-request .htmx-indicator, .htmx-request.htmx-indicator { opacity: 1; }
.htmx-indicator { opacity: 0; transition: opacity 150ms ease-in; }

/* ---- hero band (s5dli.ca style: burgundy gradient with a curved lower edge) ---- */
.hero-band { background: linear-gradient(120deg, var(--hero-from) 0%, var(--hero-via) 45%, var(--hero-to) 100%); color: var(--on-hero);
  clip-path: ellipse(140% 100% at 50% 0%); padding-bottom: var(--space-6); }
.hero-band__inner { max-width: var(--content-width); margin: 0 auto; padding: var(--space-7) var(--space-4) var(--space-6); }
.hero-band h1 { color: var(--on-hero); font-size: 2.4rem; margin-bottom: var(--space-3); }
.hero-band p { color: var(--on-hero-muted); max-width: 60ch; font-size: var(--text-lg); }
.hero-band .eyebrow { color: var(--on-hero-muted); }
.hero-band .button { background: #ffffff; border-color: #ffffff; color: #800020; }
.hero-band .button:hover { background: #f8e8ec; border-color: #f8e8ec; color: #5d0017; }
.hero-band :focus-visible { outline-color: #E1AD01; }
.hero-band + .site-main { padding-top: var(--space-5); }
@media (max-width: 600px) { .hero-band h1 { font-size: 1.8rem; } .hero-band__inner { padding-top: var(--space-6); } .hero-band { clip-path: ellipse(220% 100% at 50% 0%); } }

@media (max-width: 600px) {
  h1 { font-size: var(--text-xl); }
  .lesson-row { grid-template-columns: auto 1fr; }
  .lesson-row > .status { grid-column: 2; }
}

/* ---- video pager titles ---- */
.pager a { max-width: 48%; }
@media (max-width: 600px) { .pager a { max-width: 100%; } }
.video-panel__rule { margin: var(--space-2) 0 0; font-size: var(--text-sm); color: var(--text-muted); }
.notice-inline { font-size: var(--text-sm); color: var(--danger); }

/* ---- tasks ---- */
.task__head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: var(--space-3); }
.task-form input[type="file"], .task-form textarea { font: inherit; width: 100%; padding: 10px 12px; border: 2px solid var(--border); border-radius: var(--radius-sm); background: var(--surface-raised); color: var(--text); }
.task-form textarea:focus-visible, .task-form input[type="file"]:focus-visible { border-color: var(--brand); }
.task-form label { font-weight: 600; }
.notice--success { border-left-color: var(--done); color: var(--text); background: var(--done-soft); }
.feedback { border-left: 4px solid var(--accent); }
.feedback__grade { font-size: var(--text-lg); }

/* ---- quizzes ---- */
.facts { display: flex; flex-wrap: wrap; gap: var(--space-5); margin: 0 0 var(--space-4); }
.facts dt { font-size: var(--text-sm); color: var(--text-muted); }
.facts dd { margin: 0; font-size: var(--text-lg); font-weight: 600; }
.attempts { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.attempts th, .attempts td { text-align: left; padding: var(--space-3) var(--space-4); border-bottom: 1px solid var(--border); }
.attempts th { font-size: var(--text-sm); color: var(--text-muted); font-weight: 600; }
.question { border: 1px solid var(--border); margin: 0; min-width: 0; }
.question__number { font-weight: 700; color: var(--brand); padding: 0 var(--space-2); }
.question__prompt { margin-bottom: var(--space-4); }
.question__prompt video { width: 100%; max-height: 60vh; background: #000; border-radius: var(--radius); }
.choices { display: grid; gap: var(--space-3); }
.choice { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-4); border: 2px solid var(--border); border-radius: var(--radius); background: var(--surface-raised); cursor: pointer; font-size: var(--text-lg); }
.choice:hover { border-color: var(--brand); }
.choice input { width: 1.4rem; height: 1.4rem; accent-color: var(--brand); flex-shrink: 0; }
.choice:has(input:checked) { border-color: var(--brand); background: var(--brand-soft); }
.choice:has(input:focus-visible) { outline: 3px solid var(--focus); outline-offset: 2px; }
.choice.choice--correct, .choice.choice--correct:has(input:checked) { border-color: var(--done); background: var(--done-soft); }
.choice.choice--incorrect, .choice.choice--incorrect:has(input:checked) { border-color: var(--danger); background: var(--surface-raised); }
.choice__mine { margin-left: auto; font-size: var(--text-sm); font-weight: 700; white-space: nowrap; }
.choice--correct .choice__mine { color: var(--done); }
.choice--incorrect .choice__mine { color: var(--danger); }
.question--correct { border-left: 5px solid var(--done); }
.question--partial { border-left: 5px solid var(--accent); }
.question--incorrect { border-left: 5px solid var(--danger); }
.status--incorrect { color: var(--danger); }
.question__feedback, .question__general, .question__right { margin-top: var(--space-3); }
.question__right { font-weight: 600; }
.text-answer { display: grid; gap: var(--space-2); font-weight: 600; }
.text-answer input { font: inherit; padding: 10px 12px; border: 2px solid var(--border); border-radius: var(--radius-sm); background: var(--surface-raised); color: var(--text); }
.result-grade { font-size: var(--text-2xl); font-weight: 700; color: var(--brand); margin: 0; }
.quiz-form .pager { margin-top: var(--space-4); }

/* ---- packaged modules ---- */
.package-play { display: flex; flex-direction: column; gap: var(--space-3); }
.package-play__bar { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.package-play__title { font-size: var(--text-lg); margin: 0; }
.package-play__frame { width: 100%; height: calc(100dvh - 190px); min-height: 480px; border: 1px solid var(--border); border-radius: var(--radius); background: #000; }

/* ---- S5DLI Interactive lessons ---- */
.lesson-block + .lesson-block { border-top: 1px solid var(--border); padding-top: var(--space-5); }
.lesson-figure { margin: 0; }
.lesson-figure img { max-width: 100%; height: auto; border-radius: var(--radius-sm); }
.lesson-figure figcaption { font-size: var(--text-sm); color: var(--text-muted); margin-top: var(--space-2); }
.lesson-video { width: 100%; max-width: 960px; border-radius: var(--radius-sm); background: #000; }
.lesson-video--small { max-width: 360px; }
.vocabulary dt { font-weight: 600; margin-top: var(--space-4); }
.vocabulary dd { margin: var(--space-1) 0 0; }

/* ---- S5DLI Interactive questions ---- */
.facts { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-5); }
.question { border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-4); background: var(--surface); margin: 0; }
.question__prompt { font-weight: 600; padding: 0 var(--space-2); }
.question__number { display: block; font-size: var(--text-sm); color: var(--text-muted); font-weight: 500; }
.question__media { max-width: 100%; height: auto; border-radius: var(--radius-sm); }
.choices { display: grid; gap: var(--space-2); }
.choice { display: flex; gap: var(--space-2); align-items: flex-start; }
.order-row, .match-row { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-3); align-items: center; margin-bottom: var(--space-2); }
.fill-text { line-height: 2.4; }
.question textarea { width: 100%; font: inherit; }
.practice { border-left: 4px solid var(--accent); padding-left: var(--space-4); }
.question__head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-3); }
.verdict { font-weight: 700; font-size: var(--text-sm); }
.verdict--correct { color: var(--done); }
.verdict--incorrect { color: var(--danger); }
.review-list { padding-left: var(--space-5); }
.review-list .is-correct { font-weight: 600; }
.tag { display: inline-block; margin-left: var(--space-2); font-size: var(--text-sm); padding: 0 var(--space-2); border: 1px solid var(--border); border-radius: var(--radius-pill); }
.tag--correct { border-color: var(--done); color: var(--done); }
.review-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-4); }
.feedback { background: var(--brand-soft); border-radius: var(--radius-sm); padding: var(--space-3) var(--space-4); }
.attempts { border-collapse: collapse; width: 100%; }
.attempts th, .attempts td { text-align: left; padding: var(--space-2); border-bottom: 1px solid var(--border); }
.result { font-size: var(--text-lg); }
.result--passed { color: var(--done); }

/* ---- hotspot tapping ---- */
.hotspot { position: relative; display: inline-block; max-width: 100%; line-height: 0; }
.hotspot--active img { cursor: crosshair; }
.hotspot__marker { position: absolute; transform: translate(-50%, -50%); width: 32px; height: 32px; border-radius: 50%;
  border: 3px solid #fff; background: var(--brand); color: var(--brand-contrast); font: inherit; font-weight: 700; font-size: 14px;
  line-height: 1; cursor: pointer; box-shadow: 0 0 0 2px var(--brand); }
.hotspot__marker:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }

/* S5DLI Interactive /2: signed options */
.option--signed { display: grid; gap: var(--space-2); }
.sign-clip { display: block; max-width: 280px; width: 100%; }
.signed-options { margin: var(--space-2) 0; }
.signed-options ul, ul.signed-options { list-style: none; padding: 0; display: grid; gap: var(--space-3); }
.short-answer { max-width: 24rem; width: 100%; font-size: var(--text-lg); }
.order-row .sign-clip, .match-row .sign-clip { flex-basis: 100%; order: 3; }

/* S5DLI Interactive /2 phase B: word picking */
.word-picker { line-height: 2.4; font-size: var(--text-lg); }
.word { display: inline-block; cursor: pointer; }
.word input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.word span { padding: 0.1em 0.3em; border: 2px solid transparent; border-radius: var(--radius); }
.word:hover span { border-color: var(--border); }
.word input:checked + span { background: var(--brand-soft); border-color: var(--brand); }
.word input:focus-visible + span { outline: 3px solid var(--focus); outline-offset: 2px; }
.word-review { line-height: 2.2; font-size: var(--text-lg); }
.word-result.is-chosen { background: var(--brand-soft); padding: 0.1em 0.3em; border-radius: var(--radius); }
.word-result.is-correct { text-decoration: underline 3px var(--done); text-underline-offset: 4px; }
.word-result.is-wrong { text-decoration: line-through 2px var(--danger); }

/* S5DLI Interactive /2 phase C: lesson blocks */
.accordion { display: grid; gap: var(--space-2); }
.accordion__item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface-raised); }
.accordion__item summary { cursor: pointer; padding: var(--space-3) var(--space-4); font-weight: 600; font-size: var(--text-lg); }
.accordion__item summary:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
.accordion__body { padding: 0 var(--space-4) var(--space-4); }
.flashcards { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-4); grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.flashcard { border: 2px solid var(--border); border-radius: var(--radius); background: var(--surface-raised); padding: var(--space-4); display: grid; gap: var(--space-3); align-content: start; }
.flashcard__back summary { cursor: pointer; color: var(--brand); font-weight: 600; }
.flashcard__back[open] summary { margin-bottom: var(--space-2); }
.explore { margin: 0; }
.explore__image { position: relative; display: inline-block; max-width: 100%; }
.explore__image img { display: block; max-width: 100%; height: auto; border-radius: var(--radius-sm); }
.explore__marker { display: none; }
.explore--active .explore__marker { display: grid; }
.explore__marker { position: absolute; transform: translate(-50%, -50%); min-width: 2rem; height: 2rem; padding: 0 0.4rem; display: grid; place-items: center; border-radius: 999px; background: var(--brand); color: #fff; font-weight: 700; text-decoration: none; border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,.4); }
.explore__marker:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
.explore__list { display: grid; gap: var(--space-3); padding-left: 1.5rem; }
.explore__list li:target { background: var(--brand-soft); border-radius: var(--radius); padding: var(--space-2); }
.compare { display: grid; gap: var(--space-4); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* S5DLI Interactive /2: video cue points */
.cues--active .cues__intro { display: none; }
.cue--current { outline: 3px solid var(--brand); outline-offset: 4px; border-radius: var(--radius); }

/* S5DLI Interactive /2: branching scenarios */
.scenario__meta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3); justify-content: space-between; }
.scenario__choices { border: 0; padding: 0; margin: 0; }
.scenario__choices legend { font-weight: 700; font-size: var(--text-lg); margin-bottom: var(--space-2); }
.scenario__choice { display: grid; gap: var(--space-2); }
.scenario__button { width: 100%; text-align: left; justify-content: flex-start; white-space: normal; }
