/* The Table — consumer design language (V6 consumer bar: warm, human, never dashboard grammar)
   Palette: IHC 2026 brand (Purple #413494, Red #E52823, Blue #5EAEE0, Gold #F9C20A,
   Charcoal #495965, Green #82C341). Fonts: Montserrat headings, Lora body. */

:root {
  --purple: #413494;
  --red: #E52823;
  --blue: #5EAEE0;
  --gold: #F9C20A;
  --charcoal: #495965;
  --green: #82C341;
  --pink: #CE509D;
  --paper: #FAF8F4;
  --ink: #23272E;
  --card: #FFFFFF;
  --purple-tint: #ECEAF6;
  --blue-tint: #EBF5FC;
  --gold-tint: #FEF6DC;
  --green-tint: #F0F8E6;
  --red-tint: #FDECEB;
  --radius: 14px;
  --shadow: 0 2px 12px rgba(35, 39, 46, 0.07);
  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Lora', Georgia, serif;
  --measure: 46rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.65;
}
h1, h2, h3, .btn, nav, .brand-lockup, .stage-pill, .grade-badge { font-family: var(--font-head); }
h1 { font-weight: 800; line-height: 1.12; font-size: clamp(1.9rem, 5vw, 3rem); color: var(--purple); margin: 0.2em 0 0.4em; }
h2 { font-weight: 700; font-size: clamp(1.25rem, 3vw, 1.6rem); color: var(--purple); margin: 1.6em 0 0.5em; }
a { color: var(--purple); text-decoration-thickness: 1px; text-underline-offset: 3px; }
main { max-width: 62rem; margin: 0 auto; padding: 1rem 1.2rem 4rem; }
p, ul { max-width: var(--measure); }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--purple); color: #fff; padding: 0.6em 1em; z-index: 50; }
.skip-link:focus { left: 0; }

/* Crisis banner: first in DOM on recovery-lane pages */
.crisis-banner {
  background: var(--purple);
  color: #fff;
  padding: 0.7rem 1.2rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
}
.crisis-banner a { color: var(--gold); font-weight: 700; }

/* Crisis links carry a full touch target.
   Measured on the live recovery lane at 375px: the 988 link was 30x19 CSS px
   and the Crisis Text Line link 49x20 - both under WCAG 2.2 SC 2.5.8's 24x24
   floor, and far under the 44px this design system asks for. These are the
   highest-stakes controls in the estate and they were the smallest: a person
   in distress on a phone had to hit thirty pixels to call a suicide lifeline.

   The target is expanded with an overlay rather than by making the link a
   block, because these sit inline inside a sentence and changing their display
   would break the banner's line flow. The pseudo-element takes no space, so the
   layout is byte-identical; only the hit area grows. The two links sit far
   enough apart in the sentence that the expanded areas do not overlap. */
.crisis-banner a { position: relative; }
.crisis-banner a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  min-width: 44px;
  height: 44px;
}
/* Keyboard focus must stay visible on the real link, not the invisible overlay. */
.crisis-banner a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.site-header {
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem;
  background: var(--card);
  border-bottom: 3px solid var(--gold);
}
.wordmark-name { font-weight: 800; font-size: 1.35rem; color: var(--purple); letter-spacing: -0.01em; display: block; }
.wordmark-org { font-size: 0.72rem; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.09em; }

/* V6 §3 brand-safe dual lockup. Structural flex cells with defensive resets
   only; no negative margins, absolute positioning, transforms, or z-index
   nudges (the §3 prohibited repairs). Same-origin assets (strict-CSP safe). */
.brand-lockup {
  position: static;
  transform: none;
  margin: 0;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 1 auto;
  min-width: 0;
}
.brand-lockup__alex,
.brand-lockup__ihc-link {
  position: static;
  transform: none;
  margin: 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}
.brand-lockup__mark {
  position: static;
  transform: none;
  margin: 0;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand-lockup__mark img { width: 30px; height: 30px; display: block; }
.brand-lockup__wording {
  position: static;
  transform: none;
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  white-space: nowrap;
  font-family: var(--font-head);
}
.brand-lockup__rule {
  width: 1px;
  height: 30px;
  margin: 0;
  flex: 0 0 auto;
  background: #E0E0E0;
}
.brand-lockup__ihc {
  width: 118px;
  height: auto;
  max-height: 44px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
@media (max-width: 479px) {
  /* §3: at the smallest widths the wording collapses visually but stays in
     the accessibility tree (standard visually-hidden pattern, used for
     accessible hiding, not layout repair). Mark + IHC remain visible; no
     horizontal overflow at 390px. */
  .brand-lockup__wording {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .brand-lockup__ihc { width: 96px; }
}
.site-header nav { display: flex; flex-wrap: wrap; gap: 1.1rem; font-weight: 600; font-size: 0.92rem; }
.site-header nav a { text-decoration: none; color: var(--charcoal); }
.site-header nav a:hover { color: var(--purple); }

.context-note {
  background: var(--gold-tint); border-left: 4px solid var(--gold);
  padding: 0.6rem 1.2rem; font-family: var(--font-head); font-size: 0.9rem;
}

/* Hero */
.hero { padding: 3.2rem 0 2rem; }
.hero-eyebrow, .journey-eyebrow, .scenario-eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--red); margin: 0;
}
.hero-lede { font-size: 1.18rem; line-height: 1.6; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin: 1.6rem 0 0.8rem; }
.hero-note { font-size: 0.9rem; color: var(--charcoal); font-style: italic; }

.btn {
  display: inline-block; font-weight: 700; font-size: 1rem; text-decoration: none;
  padding: 0.75em 1.5em; border-radius: 999px; border: 2px solid var(--purple); cursor: pointer;
}
.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover { background: #33296f; }
.btn-secondary { background: transparent; color: var(--purple); }
.btn-secondary:hover { background: var(--purple-tint); }

/* Lane cards */
.section-lede { color: var(--charcoal); }
.lane-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 1.4rem; }
.lane-card {
  display: flex; flex-direction: column; gap: 0.5rem;
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.4rem; text-decoration: none; border-top: 5px solid var(--purple);
  transition: transform 0.15s ease;
}
.lane-card:hover { transform: translateY(-3px); }
.lane-reentry { border-top-color: var(--purple); }
.lane-recovery { border-top-color: var(--green); }
.lane-veterans { border-top-color: var(--blue); }
.lane-disability { border-top-color: var(--gold); }
.lane-label { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.lane-tease { font-size: 0.95rem; color: var(--charcoal); line-height: 1.45; }
.lane-go { font-family: var(--font-head); font-weight: 700; color: var(--purple); font-size: 0.9rem; margin-top: auto; }

.both-sides { margin: 3rem 0; }
.both-sides-inner {
  background: var(--purple); color: #fff; border-radius: var(--radius); padding: 2rem 1.8rem;
}
.both-sides-inner h2 { color: var(--gold); margin-top: 0; }
.both-sides-links { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.both-sides-links a { color: #fff; font-family: var(--font-head); font-weight: 600; }

.entry-contexts { background: var(--blue-tint); border-radius: var(--radius); padding: 1.4rem 1.8rem; }
.entry-contexts h2 { margin-top: 0; }

/* Journey */
.journey-header { padding: 2.2rem 0 0.5rem; }
.stage-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.2rem 0 2rem; }
.stage-pill {
  display: inline-flex; align-items: center; gap: 0.45em;
  background: var(--card); border: 1.5px solid var(--purple-tint); border-radius: 999px;
  padding: 0.4em 1em; font-weight: 600; font-size: 0.85rem; text-decoration: none; color: var(--charcoal);
}
.stage-pill:hover { border-color: var(--purple); color: var(--purple); }
.stage-num {
  display: inline-grid; place-items: center; width: 1.5em; height: 1.5em;
  background: var(--purple); color: #fff; border-radius: 50%; font-size: 0.8em; font-weight: 700;
}
.journey-stage {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.8rem 1.8rem 1.5rem; margin-bottom: 1.6rem;
}
.stage-verb {
  display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.25em;
}
.truth-list li, .keep-list li { margin-bottom: 0.55em; }
.item-list li { margin-bottom: 0.7em; }
.people-list { list-style: none; padding: 0; }
.people-list li { margin-bottom: 0.9em; }
.resource-note { display: block; font-size: 0.9rem; color: var(--charcoal); }
.stage-note { font-size: 0.92rem; font-style: italic; color: var(--charcoal); }

.mark-done {
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  background: var(--card); color: var(--charcoal); border: 1.5px dashed var(--charcoal);
  border-radius: 999px; padding: 0.45em 1.1em; cursor: pointer; margin-top: 0.6rem;
}
.mark-done.done { background: var(--green-tint); border: 1.5px solid var(--green); color: #3f6b0e; }
.mark-done.done::before { content: "✔ "; }

/* Scenario cards */
.scenario-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0.9rem; margin-top: 1rem; }
.scenario-card {
  display: flex; flex-direction: column; gap: 0.35rem;
  background: var(--paper); border: 1.5px solid var(--purple-tint); border-radius: var(--radius);
  padding: 1.1rem; text-decoration: none;
}
.scenario-card:hover { border-color: var(--purple); }
.scenario-card.featured { border-color: var(--gold); background: var(--gold-tint); }
.scenario-setting { font-family: var(--font-head); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); }
.scenario-card .scenario-title { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.scenario-tagline { font-size: 0.88rem; color: var(--charcoal); line-height: 1.4; }
.scenario-progress:not(:empty) {
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; color: #3f6b0e; margin-top: auto;
}

/* Scenario player */
.scenario-header { padding: 2.2rem 0 0.4rem; }
.scenario-lede { font-size: 1.15rem; font-style: italic; color: var(--charcoal); }
.fear-frame {
  background: var(--purple-tint); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin: 1.4rem 0 2rem;
}
.fear-frame h2 { margin-top: 0; font-size: 1.1rem; }
.fear-pair { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.fear-who { font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--purple); }
.fear-side p { margin: 0.3em 0 0; font-style: italic; }
.fear-note { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--charcoal); margin: 1rem 0 0; }

.step { margin-bottom: 1.8rem; }
.step-context p { font-size: 1.05rem; background: var(--card); border-left: 4px solid var(--blue); border-radius: 0 var(--radius) var(--radius) 0; padding: 1rem 1.3rem; box-shadow: var(--shadow); }
.exchange-line { font-size: 1.12rem; }
.exchange-speaker { font-family: var(--font-head); font-weight: 700; color: var(--purple); }
.choices { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 0.8rem; }
.choice-btn {
  width: 100%; text-align: left; font-family: var(--font-body); font-size: 1rem; line-height: 1.5;
  background: var(--card); border: 1.5px solid var(--purple-tint); border-radius: var(--radius);
  padding: 0.9rem 1.2rem; cursor: pointer;
}
.choice-btn:hover { border-color: var(--purple); }
.choice.revealed .choice-btn { border-color: var(--purple); background: var(--purple-tint); }
.choice-feedback { padding: 0.8rem 1.2rem 0.4rem; }
.grade-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; border-radius: 999px; padding: 0.25em 0.9em; margin-bottom: 0.4em;
}
.grade-strong { background: var(--green-tint); color: #3f6b0e; }
.grade-risky { background: var(--gold-tint); color: #8a6d00; }
.grade-weak { background: var(--red-tint); color: #a01d19; }

.step-practice {
  background: var(--gold-tint); border-radius: var(--radius); padding: 1.4rem 1.6rem;
}
.step-practice h2 { margin-top: 0; }
.model-answer summary { font-family: var(--font-head); font-weight: 600; cursor: pointer; color: var(--purple); }
.model-answer p { font-style: italic; }
.practice-privacy { font-size: 0.85rem; color: var(--charcoal); }

.debrief { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.6rem 1.8rem; }
.debrief h2 { margin-top: 0; }
.debrief-links { display: flex; flex-direction: column; gap: 0.5rem; margin: 1rem 0 1.4rem; }
.debrief-link { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; }
.link-note { font-weight: 400; color: var(--charcoal); font-size: 0.85rem; }
.debrief-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* Employer + misc */
.employer-footer-cta { background: var(--blue-tint); border-radius: var(--radius); padding: 1.4rem 1.8rem; }
.employer-footer-cta h2 { margin-top: 0; }
.practice-group { margin-bottom: 2rem; }
.legal-page { padding-top: 2rem; }
.coach-promises { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.6rem 1.8rem; }

.journey-print { text-align: center; margin: 2rem 0; }

/* Footer */
.site-footer { background: var(--ink); color: #cfd6dd; padding: 2rem 1.4rem 2.5rem; margin-top: 3rem; }
.site-footer a { color: var(--gold); }
.footer-crisis { font-family: var(--font-head); font-weight: 600; margin-bottom: 1.2rem; }
.footer-disclaimer { font-size: 0.82rem; line-height: 1.55; max-width: 56rem; }
.footer-brand { margin-top: 1.4rem; font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }

/* Facilitator mode */
body[data-context="facilitator"] .choice-feedback[hidden] { display: block !important; }
body[data-context="facilitator"] .choice-feedback { display: block; }

/* Print: practice cards */
@media print {
  .site-header, .site-footer, .stage-nav, .mark-done, .btn, .hero-actions,
  .context-note, .journey-print, .debrief-actions, .crisis-banner { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  .journey-stage, .debrief, .step-context p, .fear-frame, .step-practice { box-shadow: none; border: 1px solid #ccc; break-inside: avoid; }
  .choice-feedback[hidden] { display: block !important; }
  a { color: #000; text-decoration: none; }
  .scenario::after {
    content: "The Table · thetable.alexhamiltoncounty.com · free practice, both chairs · In crisis call or text 988";
    display: block; margin-top: 1.5em; font-family: var(--font-head); font-size: 9pt; color: #555;
  }
}

/* ---- v1.3 If-then commitments (implementation intentions) ---- */
.commitment {
  background: var(--gold-tint); border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.2rem 1.4rem; margin: 1.4rem 0 0.8rem;
}
.commitment.committed { background: var(--green-tint); border-left-color: var(--green); }
.commit-h { font-family: var(--font-head); font-size: 0.95rem; color: var(--purple); margin: 0 0 0.6rem; }
.commit-when { font-size: 1.05rem; margin: 0 0 0.5rem; font-weight: 600; }
.commit-then-label strong {
  font-family: var(--font-head); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.78rem; color: var(--red); margin-right: 0.3em;
}
.commit-then-label { margin: 0 0 0.5rem; }
.commit-hint { font-size: 0.85rem; color: var(--charcoal); font-style: italic; }
.commit-options { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 0.7rem; }
.commit-option {
  text-align: left; font-family: var(--font-body); font-size: 0.95rem; line-height: 1.45;
  background: var(--card); border: 1.5px solid rgba(73,89,101,0.25); border-radius: 8px;
  padding: 0.6rem 0.9rem; cursor: pointer;
}
.commit-option:hover { border-color: var(--purple); }
.commit-option.chosen { border-color: var(--purple); background: var(--purple-tint); font-weight: 600; }
.commit-custom {
  width: 100%; font-family: var(--font-body); font-size: 0.95rem; line-height: 1.45;
  border: 1.5px solid rgba(73,89,101,0.25); border-radius: 8px; padding: 0.55rem 0.8rem; background: #fff;
}
.commit-actions { display: flex; gap: 0.8rem; align-items: center; margin-top: 0.7rem; flex-wrap: wrap; }
.commit-save {
  font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; cursor: pointer;
  background: var(--purple); color: #fff; border: none; border-radius: 999px; padding: 0.5em 1.3em;
}
.commit-save:hover { background: #33296f; }
.commit-status { font-family: var(--font-head); font-size: 0.82rem; font-weight: 600; color: #3f6b0e; }
.commit-privacy { font-size: 0.82rem; color: var(--charcoal); margin: 0.7rem 0 0; }
.commit-why { border-top: 5px solid var(--gold); }
.commit-rule { font-family: var(--font-head); font-weight: 600; color: var(--purple); }
.commit-row {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1rem 1.2rem; margin-bottom: 0.8rem; position: relative;
}
.commit-row-when { margin: 0 0 0.3rem; color: var(--charcoal); }
.commit-row-then { margin: 0; font-size: 1.06rem; }
.commit-remove {
  position: absolute; top: 0.8rem; right: 0.9rem; background: none; border: none;
  font-family: var(--font-head); font-size: 0.78rem; color: var(--charcoal); cursor: pointer; text-decoration: underline;
}
.commit-remove:hover { color: var(--red); }

/* ---- v1.2 Employer population prep ---- */
.prep-picker { background: var(--purple-tint); border-radius: var(--radius); padding: 1.6rem 1.8rem; margin: 1.4rem 0 2rem; }
.prep-picker h2 { margin-top: 0; }
.prep-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 0.8rem; margin-top: 1.1rem; }
.prep-card {
  display: flex; flex-direction: column; gap: 0.5rem; justify-content: space-between;
  background: var(--card); border-radius: var(--radius); padding: 1.1rem 1.2rem;
  text-decoration: none; border-left: 5px solid var(--purple);
}
.prep-card:hover { border-left-width: 9px; }
.prep-reentry { border-left-color: var(--purple); }
.prep-recovery { border-left-color: var(--green); }
.prep-veterans { border-left-color: var(--blue); }
.prep-disability { border-left-color: var(--gold); }
.prep-mixed { border-left-color: var(--charcoal); }
.prep-label { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.prep-switch { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: baseline; margin: 1rem 0 1.6rem; font-size: 0.9rem; }
.prep-switch-label { font-family: var(--font-head); font-weight: 600; color: var(--charcoal); }
.prep-switch a { font-family: var(--font-head); font-weight: 600; background: var(--card); border: 1.5px solid var(--purple-tint); border-radius: 999px; padding: 0.3em 0.9em; text-decoration: none; }
.prep-switch a:hover { border-color: var(--purple); }
.rail-list li { margin-bottom: 0.7em; }
.rail-no li::marker { content: "✕ "; color: var(--red); font-weight: 700; }
.rail-yes li::marker { content: "✔ "; color: var(--green); font-weight: 700; }
.mistake-block { border-left: 5px solid var(--red); }
.mistake-body { font-size: 1.06rem; }
.sub-h { font-family: var(--font-head); font-size: 1rem; color: var(--purple); margin-bottom: 0.4rem; }
.chair-pair { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 0.9rem; margin-top: 0.8rem; }
.chair-card { display: flex; flex-direction: column; gap: 0.4rem; background: var(--paper); border: 1.5px solid var(--purple-tint); border-radius: var(--radius); padding: 1.1rem 1.2rem; text-decoration: none; }
.chair-card:hover { border-color: var(--purple); }
.chair-card.their { background: var(--blue-tint); }
.chair-who { font-family: var(--font-head); font-weight: 700; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--red); }
.chair-title { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.chair-fear { font-style: italic; font-size: 0.9rem; color: var(--charcoal); }

/* ---- v1.1 Build Your Interview ---- */
.builder-field { margin: 1rem 0; max-width: var(--measure); }
.builder-field label, .builder-label { display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; margin-bottom: 0.35rem; }
.builder-field input[type="text"], .builder-field select {
  width: 100%; font-family: var(--font-body); font-size: 1rem; padding: 0.6rem 0.8rem;
  border: 1.5px solid var(--purple-tint); border-radius: 8px; background: var(--paper);
}
.function-picks { display: flex; flex-direction: column; gap: 0.5rem; }
.function-pick {
  display: flex; gap: 0.6rem; align-items: baseline; background: var(--paper);
  border: 1.5px solid var(--purple-tint); border-radius: 8px; padding: 0.55rem 0.8rem; cursor: pointer;
  font-family: var(--font-body); font-weight: 400;
}
.function-pick.picked { border-color: var(--purple); background: var(--purple-tint); }
.builder-empty { font-style: italic; color: var(--charcoal); }
.degree-check { display: flex; gap: 0.5rem; align-items: baseline; cursor: pointer; }
.degree-nudge { background: var(--gold-tint); border-left: 4px solid var(--gold); border-radius: 0 8px 8px 0; padding: 0.9rem 1.1rem; margin-top: 0.7rem; }
.nudge-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 0.6rem; }
.method-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0.9rem; }
.method-card { background: var(--paper); border: 1.5px solid var(--purple-tint); border-radius: var(--radius); padding: 1rem 1.1rem; }
.method-card.on { border-color: var(--purple); }
.method-head { display: flex; gap: 0.5rem; align-items: baseline; font-family: var(--font-head); }
.method-rec { font-style: normal; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-left: 0.4em; }
.method-required, .method-recommended { color: #3f6b0e; }
.method-optional { color: var(--charcoal); }
.method-claim { font-size: 0.92rem; margin: 0.5rem 0 0.2rem; }
.chip-cite { font-family: var(--font-head); font-size: 0.75rem; color: var(--charcoal); letter-spacing: 0.03em; }
.worksample-ideas { background: var(--blue-tint); border-radius: var(--radius); padding: 1rem 1.3rem; margin-top: 1rem; }
.worksample-ideas h3 { margin: 0 0 0.4rem; font-size: 1rem; color: var(--purple); font-family: var(--font-head); }
.q-card { background: var(--paper); border: 1.5px solid var(--purple-tint); border-radius: var(--radius); padding: 1.1rem 1.3rem; margin-bottom: 1rem; }
.q-card h3 { margin: 0 0 0.6rem; font-size: 1rem; font-family: var(--font-head); color: var(--purple); }
.q-style { display: flex; gap: 0.6rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.style-toggle {
  font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; border-radius: 999px;
  border: 1.5px solid var(--purple-tint); background: var(--card); padding: 0.35em 0.9em; cursor: pointer;
}
.style-toggle.on { background: var(--purple); color: #fff; border-color: var(--purple); }
.q-card textarea, .anchor-grid textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.95rem; line-height: 1.45;
  border: 1.5px solid var(--purple-tint); border-radius: 8px; padding: 0.5rem 0.7rem; background: #fff;
}
.anchor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.7rem; margin-top: 0.7rem; }
.anchor-label { display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.25rem; }
.anchor-weak { color: #a01d19; }
.anchor-solid { color: #8a6d00; }
.anchor-strong { color: #3f6b0e; }
.closing-panel { border-top: 5px solid var(--gold); }

/* Print guide: hidden on screen, the only thing on paper in guide mode */
.print-guide { display: none; }
@media print {
  body.print-guide-mode main > article > *:not(.print-guide) { display: none !important; }
  body.print-guide-mode .print-guide { display: block !important; }
  .commitment .commit-options, .commitment .commit-actions, .commitment .commit-privacy { display: none; }
  .commit-remove { display: none; }
  .print-guide { font-size: 10.5pt; color: #000; }
  .guide-title { font-family: var(--font-head); font-weight: 800; font-size: 15pt; }
  .guide-sub { font-size: 9.5pt; margin: 0.3em 0 1em; color: #333; }
  .guide-h { font-family: var(--font-head); font-weight: 700; font-size: 11pt; margin: 0.9em 0 0.3em; border-bottom: 1.5px solid #000; }
  .g-q { break-inside: avoid; margin-bottom: 0.8em; }
  .g-q-head { font-weight: 700; margin-bottom: 0.3em; }
  .g-anchors div { margin-bottom: 0.15em; }
  .g-score { font-family: var(--font-head); margin-top: 0.3em; }
  .guide-total { margin-top: 1em; }
  .guide-footer { margin-top: 1.4em; font-size: 8pt; color: #444; border-top: 1px solid #999; padding-top: 0.5em; }
}

@media (max-width: 640px) {
  .site-header { padding: 0.9rem 1rem; }
  main { padding: 0.6rem 1rem 3rem; }
  .hero { padding-top: 2rem; }
}

/* V6 §7 reduced motion: everything collapses to final states. The only
   motion on this surface is the lane-card hover lift and smooth scrolling;
   both stop here. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lane-card { transition: none; }
  .lane-card:hover { transform: none; }
}
