/* ============================================================================
   AOA TEST CENTER — RESULTS (the debrief) · screen 05
   The surface that fires when a session ends. Two flavors share one system:
     · MOCK EXAM RESULTS  — pass/fail matters (Variant A + Variant B)
     · STUDY SESSION RESULTS — progress + insight, no pass/fail

   Screen-level composition ONLY. Every color, font, radius, shadow and motion
   value is inherited from test-center-system.css. No new tokens, no new colors.
   Discipline carried over: orange is a scalpel, a shortfall is CALM AMBER never
   harsh red (red = system error only), whitespace is generous, motion is named.
   ========================================================================== */

/* ----------------------------------------------------------------------------
   SCREEN SHELL — a centered ~920px column on white surface, like the card screen
   -------------------------------------------------------------------------- */
.r-screen {
  width: 100%;
  background: var(--surface);
  color: var(--body-text);
  font-family: var(--font-body);
}
.r-screen__body {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 40px) clamp(32px, 4vw, 48px);
}

/* Session bar reused from the system; results just needs the meta line styled. */
.r-screen .session-bar { border-bottom: 1px solid var(--line); }
.r-meta {
  display: flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* Block rhythm between the four pieces. */
.r-block { margin-top: clamp(28px, 4vw, 40px); }
.r-block:first-child { margin-top: 0; }
.r-block__label { margin-bottom: var(--s-4); display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-4); }
.r-block__note { font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted); letter-spacing: 0.04em; }

/* ----------------------------------------------------------------------------
   VERDICT — hero (Variant A) and quiet context line (Variant B)
   -------------------------------------------------------------------------- */
/* Shared pass/fail badge. role="status" lives on this; calm green / calm amber. */
.r-badge {
  display: inline-flex; align-items: center; gap: var(--s-2);
  height: 30px; padding: 0 var(--s-4);
  border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 600; font-size: 0.76rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  border: 1px solid transparent;
}
.r-badge svg { flex: none; }
.r-badge--pass { color: var(--success); background: var(--success-soft); border-color: rgba(44,122,75,0.3); }
.r-badge--below { color: var(--caution); background: var(--caution-soft); border-color: rgba(196,123,31,0.32); }

/* ── Variant A: the verdict is the hero ── */
.r-verdict {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: var(--s-4);
  padding: clamp(12px, 3vw, 28px) 0 clamp(8px, 2vw, 16px);
}
.r-verdict__score {
  position: relative;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(4.4rem, 12vw, 6.6rem); line-height: 0.86;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  color: var(--score-color, var(--caution));
  transition: color var(--brief) var(--ease-calm);
}
.r-verdict__score sup {
  position: absolute; top: 0.08em; left: 100%;
  font-size: 0.4em; font-weight: 600; vertical-align: super;
  margin-left: 0.06em; color: inherit;
}
.r-verdict__word {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.9rem, 8vw, 4.4rem); line-height: 1;
  letter-spacing: -0.01em; margin-top: var(--s-2);
  text-transform: uppercase;
}
.r-verdict__word--pass { color: var(--success); }
.r-verdict__word--below { color: var(--caution); }
.r-verdict__line { max-width: 34ch; margin: 0 auto;
  font-size: clamp(1.05rem, 2.2vw, 1.22rem); line-height: 1.5;
  color: var(--ink); font-weight: 400; text-wrap: pretty;
}
.r-verdict__line strong { font-weight: 500; }

/* ── Variant B: a small pill + the score as a quiet context line ── */
.r-context {
  display: flex; align-items: center; flex-wrap: wrap; gap: var(--s-3) var(--s-4);
  padding-bottom: var(--s-2);
}
.r-context__line {
  font-family: var(--font-mono); font-size: 0.82rem; color: var(--muted);
  letter-spacing: 0.02em;
}
.r-context__line b { color: var(--ink); font-weight: 500; }

/* ----------------------------------------------------------------------------
   MENTOR NARRATIVE — Chris's voice. Accent-rail card, instrument label, an
   initials medallion. Names specific ACS codes (rendered as mono chips inline).
   -------------------------------------------------------------------------- */
.r-mentor {
  display: grid; grid-template-columns: auto 1fr; gap: 5px;
  align-items: center;
}
.r-mentor image-slot {
  flex: none;
  border-radius: var(--r-pill);
  box-shadow: 0 0 0 3px var(--surface), 0 0 0 5px var(--orange);
  background: var(--orange-soft);
}
.r-mentor__main { display: flex; flex-direction: column; gap: var(--s-3); }
.r-mentor__quote {
  margin: 0;
  display: grid; grid-template-columns: auto 1fr; column-gap: var(--s-2);
  align-items: start;
}
.r-mentor__quote .mq-mark {
  margin: 0; font-size: 3rem; line-height: 0.66; height: auto;
  transform: translateY(0.04em);
}
.r-mentor__text {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.14rem; line-height: 1.5;
  color: var(--ink); letter-spacing: 0.005em; text-wrap: pretty;
}
.r-mentor__by {
  align-self: flex-end; text-align: right; white-space: nowrap;
  font-family: var(--font-display); font-weight: 400; font-size: 0.92rem;
  color: var(--muted); letter-spacing: 0.005em;
}
.r-mentor__by b { font-weight: 600; color: var(--ink); }
.r-mentor__dash { color: var(--orange-text); margin-right: 0.35em; } /* attribution dash is text → AA role */
/* Inline ACS code reference inside narrative + breakdown. */
.r-code {
  font-family: var(--font-mono); font-weight: 500; font-size: 0.86em;
  color: var(--orange-text); letter-spacing: 0.01em; white-space: nowrap; /* ACS code is text → AA role */
}

/* ----------------------------------------------------------------------------
   ACS BREAKDOWN — one row per ACS area. Status label LEADS; the slim bar wears
   the area's mastery-state color; the raw count is secondary.
   -------------------------------------------------------------------------- */
.r-acs { display: flex; flex-direction: column; }
.r-acs-row {
  /* mastery color, set per-state below; drives bar + status label */
  --m: var(--guess);
  display: grid;
  grid-template-columns: 78px 1fr auto;
  grid-template-areas:
    "code  name    status"
    "code  bar     bar"
    "code  detail  detail";
  column-gap: var(--s-4); row-gap: 6px;
  align-items: center;
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line);
}
.r-acs-row:last-child { border-bottom: none; }
.r-acs-row[data-state="strong"] { --m: var(--success); }
.r-acs-row[data-state="okay"]   { --m: var(--guess); }
.r-acs-row[data-state="needs"]  { --m: var(--caution); }

.r-acs-row__code {
  grid-area: code; align-self: start;
  font-family: var(--font-mono); font-weight: 500; font-size: 0.82rem;
  color: var(--ink); letter-spacing: 0.02em;
  padding-top: 1px;
}
.r-acs-row__name {
  grid-area: name;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  letter-spacing: 0.005em; color: var(--ink);
}
.r-acs-row__status {
  grid-area: status; justify-self: end; align-self: center;
  font-family: var(--font-display); font-weight: 600; font-size: 0.74rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--m);
  white-space: nowrap;
}
.r-acs-row__bar {
  grid-area: bar;
  height: 12px; border-radius: var(--r-pill);
  background: var(--line); overflow: hidden;
}
.r-acs-row__fill {
  height: 100%; width: 0; border-radius: inherit; background: var(--m);
  transition: width var(--breath) var(--ease-cinematic);
}
.r-acs-row__detail {
  grid-area: detail;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
}
.r-acs-row__count {
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted);
  letter-spacing: 0.02em; font-variant-numeric: tabular-nums;
}
.r-review {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; padding: 2px 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--orange-text); /* link label is text → AA role */
  transition: color var(--glance) var(--ease-calm);
}
.r-review svg { transition: transform var(--glance) var(--ease-decisive); }
.r-review:hover { color: var(--ink); } /* orange-text links DEEPEN on hover (AA in every state) */
.r-review:hover svg { transform: translateX(3px); }

/* When ACS leads (Variant B), give the section a touch more presence. */
.r-acs--hero .r-acs-row__name { font-size: 1.08rem; }

/* ----------------------------------------------------------------------------
   CONFIDENCE CALIBRATION — the platform signature. Two columns on desktop:
   the plot, then the mentor-voice insight. Plot points draw in sequence.
   -------------------------------------------------------------------------- */
.r-calib {
  display: grid; grid-template-columns: minmax(300px, 360px) 1fr;
  gap: clamp(20px, 4vw, 40px); align-items: center;
}
.r-calib__label {
  display: grid; grid-template-columns: minmax(300px, 360px) 1fr;
  gap: clamp(20px, 4vw, 40px); align-items: baseline;
}
.r-calib__label .t-label { text-align: center; font-size: 1.64rem; }
.r-calib__plotwrap {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--s-5);
}
.r-calib__plot { display: block; width: 100%; height: auto; }
.r-calib__narrative { min-width: 0; }
.r-calib__insight {
  font-size: 1.06rem; line-height: 1.55; color: var(--ink);
  text-wrap: pretty; margin: 0 0 var(--s-4);
}
.r-calib__insight b { font-weight: 500; color: var(--ink); }
.r-calib__legend { display: flex; flex-direction: column; gap: var(--s-2); margin-top: var(--s-2); }
.r-legend-item {
  display: flex; align-items: center; gap: var(--s-3);
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted);
  letter-spacing: 0.02em;
}
.r-legend-dot { flex: none; width: 10px; height: 10px; border-radius: var(--r-pill); }
.r-legend-item b { color: var(--ink); font-weight: 500; font-variant-numeric: tabular-nums; }

/* SVG plot internals. */
.r-plot-grid { stroke: var(--line); stroke-width: 1; }
.r-plot-ref  { stroke: var(--muted); stroke-width: 1.5; stroke-dasharray: 4 5; opacity: 0.55; }
.r-plot-axis-label { fill: var(--muted); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em; }
.r-plot-tick { fill: var(--muted); font-family: var(--font-mono); font-size: 9.5px; }
.r-plot-reflabel { fill: var(--muted); font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.06em; }
/* Points draw in: start tiny + transparent, JS adds .is-in (stagger). */
.r-plot-pt { opacity: 0; transition: opacity var(--beat) var(--ease-cinematic); }
.r-plot-pt.is-in { opacity: 1; }
.r-plot-pt circle.dot {
  r: 0; transition: r var(--beat) var(--ease-cinematic);
}
.r-plot-pt.is-in circle.dot { /* r set inline as CSS var target */ }
.r-plot-ptlabel { font-family: var(--font-mono); font-size: 10px; font-weight: 500; }

/* Visually-hidden — screen-reader data table alternative for the plot. */
.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ----------------------------------------------------------------------------
   ACTION ROW — review / practice weakest / another mock + quiet "share w/ CFI"
   -------------------------------------------------------------------------- */
.r-actions { display: flex; flex-direction: column; gap: var(--s-4); }
.r-actions__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); align-items: stretch; }
.r-actions__row .btn-primary,
.r-actions__row .r-btn { width: 100%; justify-content: center; }
.r-actions .btn-primary { opacity: 1; }

/* Secondary outline button — matches the system's outline affordances. */
.r-btn {
  display: inline-flex; align-items: center; gap: var(--s-2);
  min-height: 48px; padding: 0 var(--s-5);
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--surface); color: var(--ink);
  font-family: var(--font-display); font-weight: 600; font-size: 0.88rem;
  text-transform: uppercase; letter-spacing: 0.07em; cursor: pointer;
  text-decoration: none;
  transition: border-color var(--brief) var(--ease-calm),
              background var(--brief) var(--ease-calm),
              color var(--brief) var(--ease-calm);
}
.r-btn svg { flex: none; transition: transform var(--brief) var(--ease-decisive); }
.r-btn:hover { border-color: var(--orange); color: var(--orange-text); background: var(--orange-soft); } /* label text → AA; border keeps brand */
.r-btn:hover svg { transform: translateX(3px); }

/* Quiet private "share with my CFI" — a text affordance, never a social button. */
.r-share {
  display: inline-flex; align-items: center; gap: var(--s-2);
  align-self: center;
  background: none; border: none; padding: var(--s-2) 0; cursor: pointer;
  font-family: var(--font-mono); font-size: 0.9rem; color: var(--muted);
  letter-spacing: 0.02em; text-decoration: none;
  transition: color var(--glance) var(--ease-calm);
}
.r-share svg { flex: none; }
.r-share:hover { color: var(--orange-text); } /* hover label is text → AA role */

/* ----------------------------------------------------------------------------
   STUDY SESSION RESULTS — lighter. Summary line + one reflection + two actions.
   -------------------------------------------------------------------------- */
.r-study__summary {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem); line-height: 1.18;
  letter-spacing: 0.005em; color: var(--ink); text-wrap: pretty;
  max-width: 22ch;
}
.r-study__summary .n { color: var(--success); font-variant-numeric: tabular-nums; }
.r-study__summary .n--mid { color: var(--ink); }
.r-study__summary .n--low { color: var(--caution); }

/* Revisit mini-list — revealed by "Mark the ones I want to revisit". */
.r-revisit { display: none; margin-top: var(--s-5); }
.r-revisit.is-open { display: block; animation: callout-lift var(--beat) var(--ease-cinematic) both; }
.r-revisit__label { margin-bottom: var(--s-3); }
.r-qrow {
  display: flex; align-items: flex-start; gap: var(--s-4);
  padding: var(--s-3) var(--s-4);
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--surface);
}
.r-qrow + .r-qrow { margin-top: var(--s-2); }
.r-qrow__num {
  flex: none; font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted);
  padding-top: 3px; font-variant-numeric: tabular-nums;
}
.r-qrow__text { flex: 1; font-size: 0.94rem; line-height: 1.45; color: var(--body-text); text-wrap: pretty; }
.r-qrow__result {
  flex: none; font-family: var(--font-display); font-weight: 600; font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.08em; align-self: center;
}
.r-qrow__result--correct { color: var(--success); }
.r-qrow__result--wrong { color: var(--caution); }
.r-bookmark {
  flex: none; width: 34px; height: 34px; align-self: center;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  background: var(--surface); color: var(--muted); cursor: pointer;
  transition: color var(--glance) var(--ease-calm),
              border-color var(--glance) var(--ease-calm),
              background var(--glance) var(--ease-calm);
}
.r-bookmark:hover { color: var(--orange); border-color: var(--orange); }
.r-bookmark[aria-pressed="true"] { color: var(--orange); border-color: var(--orange); background: var(--orange-soft); }
.r-bookmark[aria-pressed="true"] svg { fill: var(--orange); }

/* ----------------------------------------------------------------------------
   EMPTY / EDGE — results opened with no attempt to score
   -------------------------------------------------------------------------- */
.r-empty {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: var(--s-5); padding: clamp(32px, 6vw, 64px) var(--s-6);
}
.r-empty__icon {
  width: 56px; height: 56px; border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); background: var(--paper); border: 1px solid var(--line);
}
.r-empty__title {
  font-family: var(--font-display); font-weight: 600; font-size: 1.3rem;
  color: var(--ink); letter-spacing: 0.005em;
}
.r-empty__body { max-width: 42ch; font-size: 1rem; line-height: 1.55; color: var(--muted); text-wrap: pretty; }

/* ----------------------------------------------------------------------------
   MICROCOPY LIBRARY — the full AOA-voice copy deck for this surface
   -------------------------------------------------------------------------- */
.mc-sheet .r-screen__body { padding: clamp(28px, 4vw, 40px); }
.mc-group { margin-bottom: var(--s-8); }
.mc-group:last-child { margin-bottom: 0; }
.mc-group .t-label { margin-bottom: var(--s-4); display: block; }
.mc-row {
  display: grid; grid-template-columns: 116px 1fr; gap: var(--s-5);
  align-items: baseline;
  padding: var(--s-3) 0; border-bottom: 1px solid var(--line);
}
.mc-row:last-child { border-bottom: none; }
.mc-tag {
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--orange-text); /* deck tag is text → AA role */
  letter-spacing: 0.04em; text-transform: uppercase;
}
.mc-text { font-size: 0.98rem; line-height: 1.5; color: var(--ink); text-wrap: pretty; }

/* ----------------------------------------------------------------------------
   RESPONSIVE — mobile stacks; calibration plot above its narrative.
   (Artboards are fixed-width desktop frames; these guard the focus/preview view.)
   -------------------------------------------------------------------------- */
@media (max-width: 720px) {
  .r-calib { grid-template-columns: 1fr; }
  .r-calib__label { grid-template-columns: 1fr; }
  /* Stack Chris's portrait above the mentor quote on phones (was a fixed 2-col
     photo|text grid at every width → the byline overflowed the narrow text track). */
  .r-mentor { grid-template-columns: 1fr; }
  .r-mentor__by { white-space: normal; }   /* let the byline wrap rather than force overflow */
  .r-acs-row { grid-template-columns: 64px 1fr; }
  .r-acs-row__status { grid-column: 2; justify-self: start; align-self: start; }
  .r-acs-row {
    grid-template-areas:
      "code name"
      "code status"
      "code bar"
      "code detail";
  }
  .r-actions__row { grid-template-columns: 1fr; }
  .r-actions__row .btn-primary,
  .r-actions__row .r-btn { width: 100%; justify-content: center; }
}

/* ----------------------------------------------------------------------------
   MENTOR PULL-QUOTE OPTIONS — three treatments for the instructor debrief.
   Shared atoms: the big orange quote mark (.mq-mark) + attribution (.mq-attr).
   -------------------------------------------------------------------------- */
.mq-frame { padding: var(--s-8) clamp(20px, 4vw, 36px); }
.mq-frame__head { display: flex; flex-direction: column; gap: 4px; margin-bottom: var(--s-6); }
.mq-frame__title {
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem;
  letter-spacing: 0.005em; color: var(--ink);
}
.mq-frame__note {
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted);
  letter-spacing: 0.02em; line-height: 1.5; max-width: 64ch;
}
.mq-frame__stage { border-top: 1px solid var(--line); padding-top: var(--s-8); }

/* image-slot portrait: warm fill while empty, orange ring always. */
.mq-frame image-slot {
  border-radius: var(--r-pill);
  box-shadow: 0 0 0 4px var(--surface), 0 0 0 6px var(--orange);
  background: var(--orange-soft);
  --image-slot-placeholder-color: var(--muted);
}

/* The signature big orange quote mark. */
.mq-mark {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 5.2rem; line-height: 0.6; color: var(--orange);
  height: 0.5em; margin-bottom: var(--s-3);
}
.mq-mark--center { text-align: center; height: auto; margin: 0 auto var(--s-4); }

/* Attribution block. */
.mq-attr { display: flex; flex-direction: column; gap: 2px; margin-top: var(--s-5); }
.mq-attr__name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  letter-spacing: 0.01em; color: var(--ink);
}
.mq-attr__role {
  font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted);
}
.mq-attr__org {
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.01em; color: var(--orange-text); margin-top: 2px; /* attribution text → AA role */
}
.mq-attr--center { align-items: center; text-align: center; }
.mq-attr--dark .mq-attr__name { color: #fff; }
.mq-attr--dark .mq-attr__role { color: var(--orange); }

/* ── Option 1 · Editorial — compact stacked: small quote, photo tucked below ── */
.mq-bare { padding: clamp(24px, 4vw, 40px) clamp(20px, 4vw, 36px); }
.mq-bare image-slot {
  border-radius: var(--r-pill);
  box-shadow: 0 0 0 3px var(--surface), 0 0 0 5px var(--orange);
  background: var(--orange-soft);
}
.mq1 {
  margin: 0;
  display: grid; grid-template-columns: auto 1fr; gap: 5px;
  align-items: center;
}
.mq1 image-slot { flex: none; }
.mq1__main { display: flex; flex-direction: column; gap: var(--s-3); }
.mq1__quote {
  margin: 0;
  display: grid; grid-template-columns: auto 1fr; column-gap: var(--s-2);
  align-items: start;
}
.mq1__quote .mq-mark {
  margin: 0; font-size: 3rem; line-height: 0.66; height: auto;
  transform: translateY(0.04em);
}
.mq1__text {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.14rem; line-height: 1.5;
  color: var(--ink); letter-spacing: 0.005em; text-wrap: pretty;
}
.mq1__by {
  align-self: flex-end; text-align: right; white-space: nowrap;
  font-family: var(--font-display); font-weight: 400; font-size: 0.92rem;
  color: var(--muted); letter-spacing: 0.005em;
}
.mq1__by b { font-weight: 600; color: var(--ink); }
.mq1__dash { color: var(--orange-text); margin-right: 0.35em; } /* attribution dash is text → AA role */

/* ── Option 2 · Centered hero ── */
.mq2 {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-width: 60ch; margin: 0 auto;
  padding: clamp(28px, 4vw, 44px) 0;
}
.mq2 image-slot { margin-bottom: var(--s-5); }
.mq2__quote {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.55rem, 3vw, 2.15rem); line-height: 1.3;
  color: var(--ink); letter-spacing: 0.005em; text-wrap: balance; max-width: 26ch;
}

/* ── Option 3 · Dark band ── */
.mq3 {
  position: relative; overflow: hidden;
  background: var(--ink); border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 52px) clamp(28px, 5vw, 56px);
  background-image: radial-gradient(120% 90% at 88% -10%, rgba(244,115,33,0.22), transparent 60%);
}
.mq3__watermark {
  position: absolute; top: -0.18em; left: 0.1em;
  font-family: var(--font-display); font-weight: 700;
  font-size: 16rem; line-height: 1; color: rgba(244,115,33,0.16);
  pointer-events: none; user-select: none;
}
.mq3__inner {
  position: relative;
  display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 4vw, 44px);
  align-items: center;
}
.mq3 image-slot { box-shadow: 0 0 0 4px var(--ink), 0 0 0 6px var(--orange); }
.mq3__quote {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 2.05rem); line-height: 1.32;
  color: #fff; letter-spacing: 0.005em; text-wrap: pretty;
}
.mq3 .r-code { color: var(--orange-hover); }

@media (max-width: 720px) {
  .mq1, .mq3__inner { grid-template-columns: 1fr; }
}
