/* Resolution Therapeutics workshop hub, page-specific layer over styles.css (tokens, nav, hero, present bar).
   MADE teal is the ground; Resolution navy (#003A70, from their wordmark) marks what Resolution stated
   and nothing else. Funnel Display for headings, Funnel Sans for everything else. */

:root {
  --rtx:   #003A70;
  --rtx-t: #E9EEF5;
  --cyan:  #003A70;   /* legacy alias used by shared rules in styles.css */
  --cyan-t:#E9EEF5;
  --yellow:#FFC845;
  --tint2: #D6E8EB;
  --tint-g:#ECF7E8;
}

/* ── Nav additions ─────────────────────────────────────────────────── */
.lockup-x { color: var(--aqua); font-size: 18px; margin: 0 2px 0 4px; }
.mark-client { height: 22px; width: auto; display: block; }
.hero-marks { gap: 16px; }
.hero-marks img { filter: brightness(0) invert(1); }
.hero-lockup-client { height: 30px; }
.hero-mark-x { color: rgba(255,255,255,0.42); font-size: 20px; line-height: 1; }
.nav-links a { font-size: 12.5px; font-weight: 600; color: var(--teal); text-decoration: none; white-space: nowrap;
  padding: 6px 2px; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.is-active { border-bottom-color: var(--green); }
.nav-present { flex-shrink: 0; font: 600 12px/1 var(--font); border-radius: 999px; padding: 8px 12px; cursor: pointer;
  border: 1px solid var(--teal); background: var(--teal); color: var(--white); white-space: nowrap; }
.nav-present:hover { background: var(--teal-d); }
.nav-model { flex-shrink: 0; font: 600 12px/1 var(--font); border-radius: 999px; padding: 8px 12px; margin-left: auto;
  border: 1px solid var(--line); background: var(--white); color: var(--teal); text-decoration: none; white-space: nowrap; }
.nav-model:hover { border-color: var(--teal); }
@media (max-width: 900px) { .nav-present, .lockup-x, .mark-client { display: none; } }
@media (max-width: 640px) { .hero-lockup { height: 32px; } .hero-lockup-client { height: 24px; } }

/* ── Hero additions ────────────────────────────────────────────────── */
.hero { padding: 64px 0 64px; background: linear-gradient(160deg, #003D45 0%, var(--teal) 60%, #00404A 100%); }
.hero h1 { font-size: clamp(38px, 5.4vw, 62px); line-height: 1.02; margin: 6px 0 18px; color: var(--white); }
.hero-kicker { font-size: 11.5px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--bright, #97D700); margin: 0; }
.hero-lede { font-size: 18.5px; line-height: 1.5; color: #CFE7E2; max-width: 760px; margin: 0 0 26px; }
.hero-docs { display: flex; flex-wrap: wrap; gap: 12px; }
.doc-btn { display: inline-flex; flex-direction: column; gap: 3px; text-decoration: none; padding: 12px 18px 11px;
  border-radius: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.22); color: var(--white);
  transition: background .15s, border-color .15s; min-width: 250px; }
.doc-btn:hover { background: rgba(255,255,255,0.14); border-color: var(--aqua); }
.doc-btn-k { font-family: var(--font-disp); font-weight: 700; font-size: 15.5px; }
.doc-btn-s { font-size: 11.5px; color: #A9D5CE; letter-spacing: 0.3px; }
.hero .rule { margin-top: 30px; }
.hero-day { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.hero-day a { display: inline-flex; align-items: baseline; gap: 7px; padding: 7px 12px; border-radius: 999px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22); color: #fff; text-decoration: none; font-size: 12.5px; }
.hero-day a:hover { background: rgba(255,255,255,.18); }
.hero-day b { font-family: var(--font-mono); font-weight: 600; color: var(--aqua); }
body.present .hero-day { display: none; }

/* ── Section rhythm ────────────────────────────────────────────────── */
main > section.wrap { padding-top: 64px; padding-bottom: 40px; }
main > section.wrap + section.wrap { border-top: 1px solid var(--line); }
main h2 { font-size: clamp(26px, 3vw, 34px); color: var(--teal); margin: 4px 0 12px; line-height: 1.15; }
main h3 { font-size: 17px; color: var(--teal); margin: 26px 0 10px; }
main .h3-rule { margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--line); }
main .lede { font-size: 17.5px; line-height: 1.5; color: #3A4A4D; max-width: 800px; margin: 0 0 22px; }
main p { max-width: 860px; font-size: 15px; line-height: 1.6; }
.micro { font-size: 12.5px; color: var(--grey); line-height: 1.5; margin-top: 18px; max-width: 900px; }
.note { font-size: 13px; color: var(--teal); margin: 12px 0 0; font-weight: 600; }
.clean { list-style: none; padding: 0; margin: 0; }
.clean li { position: relative; padding-left: 18px; margin: 0 0 10px; font-size: 14.5px; line-height: 1.55; }
.clean li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 2px; background: var(--green); }
.callout { border-radius: 12px; padding: 18px 22px; font-size: 14.5px; line-height: 1.6; margin-top: 22px; max-width: none; }
.callout-amber { background: #FFF7E0; border: 1px solid var(--yellow); }
.callout-amber b { color: #8A5A00; }
.callout-rtx { background: var(--rtx-t); border: 1px solid #BFCCE0; }
.src { font-size: 11.5px; color: var(--grey); }
.src a { color: var(--teal); }
.two-col { columns: 2; column-gap: 32px; }
@media (max-width: 800px) { .two-col { columns: 1; } }

/* ── Fact strip ────────────────────────────────────────────────────── */
.facts { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin: 8px 0 34px; }
.fact { border-left: 3px solid var(--green); padding: 2px 0 2px 14px; }
.fact b { display: block; font-family: var(--font-disp); font-size: 27px; font-weight: 700; color: var(--teal); line-height: 1.05; }
.fact span { display: block; font-size: 12px; color: var(--grey); margin-top: 4px; line-height: 1.3; }

/* ── Model values (resolved placeholders) ──────────────────────────── */
.mv { border-bottom: 1px dotted var(--teal); cursor: help; font-weight: 700; color: var(--teal); }
.mv::after { content: '\2009*'; font-size: 0.75em; color: var(--green); vertical-align: super; }
.chip { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; border-radius: 4px; padding: 2px 7px; margin-right: 6px; vertical-align: 1px; white-space: nowrap; }
.chip-rtx { background: var(--rtx-t); color: var(--rtx); }
.chip-made { background: var(--tint); color: var(--teal); }
.chip-est { background: #FFF2D6; color: #8A5A00; }
.chip-open { background: #FDE8E4; color: #A33A1F; }
.chip-proven { background: #EAF6E5; color: #2E7D1E; }
.chip-tbp { background: #EEEEF1; color: #444; }
.chip-c { background: var(--aqua); color: #fff; border-radius: 999px; }
.chip-c9 { background: #B9C0C2; color: #262626; border-radius: 999px; }

/* ── Agenda ────────────────────────────────────────────────────────── */
.agenda { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 8px; }
.ag-slot { border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; background: var(--white); }
.ag-slot.ag-lite { background: var(--fill); }
.ag-time { font-family: var(--font-mono); font-size: 12px; color: var(--grey); }
.ag-lead { display: inline-block; margin-left: 8px; font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--green); }
.ag-title { font-family: var(--font-disp); font-weight: 700; color: var(--teal); font-size: 16px; margin: 4px 0 6px; line-height: 1.3; }
.ag-body { font-size: 13px; color: #3A4A4D; line-height: 1.5; margin: 0; }
.attendees { margin-top: 26px; padding: 18px 22px; background: var(--fill); border: 1px solid var(--line); border-radius: 12px; }
.attendees h3 { margin: 0 0 8px; }
.attendees p { font-size: 14px; margin: 0 0 6px; max-width: none; }
.practical { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 22px; }
.pr-item { background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--aqua); border-radius: 10px; padding: 12px 14px; font-size: 13.5px; line-height: 1.5; }
.pr-item b { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--teal); margin-bottom: 4px; }
@media (max-width: 700px) { .practical { grid-template-columns: 1fr; } }
body.present .practical { display: none; }
body.present .agenda { gap: 10px; }
body.present .ag-body { font-size: 12px; }

/* ── The people band ───────────────────────────────────────────────── */
.people-band { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 34px; padding-bottom: 6px; }
.pb-fig { margin: 0; }
.pb-fig img { display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 12px; background: var(--fill); border: 1px solid var(--line); }
.pb-fig figcaption { font-size: 12.5px; color: var(--grey); margin-top: 8px; }
body.present .people-band { display: none; }
@media (max-width: 760px) { .people-band { grid-template-columns: 1fr; padding-top: 24px; } }

/* ── Interactive PFD ───────────────────────────────────────────────── */
.pfd-wrap { border: 1px solid var(--line); border-radius: 12px; background: var(--white); overflow: hidden; margin-top: 8px; }
.pfd-tools { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 10px 12px; border-bottom: 1px solid var(--line); background: var(--fill); }
.pfd-tools .spacer { flex: 1; }
.pfd-tools a, .pfd-tools button { font: 600 12px var(--font); color: var(--teal); background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; cursor: pointer; text-decoration: none; }
.pfd-tools button:hover, .pfd-tools a:hover { border-color: var(--teal); }
.pfd-stage { overflow: auto; max-height: 72vh; background: #fff; }
.pfd-stage svg { display: block; width: 100%; height: auto; min-width: 1400px; }
.pfd-stage.is-fit svg { min-width: 0; }
.pfd-stage g[id^="unitop-"] { cursor: pointer; transition: opacity .15s; }
.pfd-stage.has-pick g[id^="unitop-"]:not(.is-pick) { opacity: .55; }
.pfd-stage g[id^="unitop-"]:hover { opacity: 1; }
.pfd-fallback img { width: 100%; display: block; }
.uo-strip { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 12px; border-top: 1px solid var(--line); background: var(--fill); }
.uo-btn { font: 600 12px var(--font); color: var(--teal); background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 6px 11px; cursor: pointer; }
.uo-btn:hover { border-color: var(--teal); }
.uo-btn.is-on { background: var(--teal); color: #fff; border-color: var(--teal); }
.uo-card { margin-top: 16px; border: 1px solid var(--line); border-left: 5px solid var(--aqua); border-radius: 12px; padding: 20px 24px; background: var(--white); }
.uo-card[hidden] { display: none; }
.uo-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 16px; }
.uo-head h3 { margin: 0; font-size: 20px; }
.uo-meta { font-size: 12.5px; color: var(--grey); }
.uo-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 22px; margin-top: 14px; }
.uo-grid h4 { margin: 0 0 6px; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--green); }
.uo-grid ul { margin: 0; padding-left: 16px; font-size: 13.5px; line-height: 1.5; }
.uo-grid li { margin-bottom: 4px; }
.uo-clocks { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 12px; }
.uo-clocks div { border-left: 3px solid var(--line); padding-left: 12px; }
.uo-clocks b { display: block; font-family: var(--font-disp); font-size: 22px; color: var(--teal); line-height: 1.1; }
.uo-clocks span { font-size: 11.5px; color: var(--grey); }
.uo-clocks .rtx b { color: var(--rtx); }
.uo-clocks .rtx { border-left-color: var(--rtx); }
.uo-clocks .est b { color: #8A5A00; }
.uo-clocks .est { border-left-color: var(--yellow); }
.uo-change { margin-top: 14px; padding: 12px 16px; background: var(--tint); border-radius: 10px; font-size: 13.5px; line-height: 1.5; }
.uo-change b { color: var(--teal); }
.uo-change + .uo-change { margin-top: 8px; }
.uo-view { margin-top: 12px; font-size: 13.5px; line-height: 1.55; }
.uo-view b { display: block; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }
@media (max-width: 900px) { .uo-grid { grid-template-columns: 1fr; } }
body.present .pfd-stage { max-height: 52vh; }
body.present .uo-card { display: none; }

/* ── Tables ────────────────────────────────────────────────────────── */
.tscroll { overflow-x: auto; margin: 10px 0 6px; -webkit-overflow-scrolling: touch; }
.tbl { width: 100%; border-collapse: collapse; font-size: 13.5px; line-height: 1.45; min-width: 620px; }
.tbl caption { text-align: left; font-family: var(--font-disp); font-weight: 700; color: var(--teal); font-size: 15px; padding: 14px 0 8px; caption-side: top; }
.tbl th { text-align: left; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--white); background: var(--teal); padding: 9px 11px; font-weight: 700; }
.tbl td { padding: 10px 11px; border-bottom: 1px solid var(--line); vertical-align: top; }
.tbl tbody tr:nth-child(even) td { background: var(--fill); }
.tbl tr:last-child td { border-bottom: 2px solid var(--line); }
.tbl .rl { font-weight: 700; color: var(--teal); }
.tbl .mono { font-family: var(--font-mono); font-size: 12px; }
.tbl .num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.tbl-tight { font-size: 12.5px; }
.tbl-tight td { padding: 7px 10px; }
.tbl-changes td:nth-child(2) { min-width: 120px; }
.tbl-changes .from { color: var(--grey); text-decoration: line-through; display: block; font-size: 12px; }
.tbl-changes .to { display: block; font-weight: 600; }
.risk { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; border-radius: 4px; padding: 3px 7px; white-space: nowrap; }
.risk-low { background: #EAF6E5; color: #2E7D1E; }
.risk-med { background: #FFF2D6; color: #8A5A00; }
.risk-na { background: #EEEEF1; color: #444; }

/* ── Model embed ───────────────────────────────────────────────────── */
.model-frame { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--fill); margin-top: 8px; }
.model-frame iframe { display: block; width: 100%; height: 820px; border: 0; background: #F4F7F7; }
.model-bar { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding: 10px 12px; border-bottom: 1px solid var(--line); background: var(--white); font-size: 13px; }
.model-bar a { font-weight: 600; color: var(--teal); }
.model-bar .spacer { flex: 1; }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
@media (max-width: 900px) { .kpis { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .kpis { grid-template-columns: 1fr; } }
.kpi { background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--teal); border-radius: 10px; padding: 12px 14px; }
.kpi .k { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey); }
.kpi .v { font-family: var(--font-disp); font-size: 30px; line-height: 1.05; margin: 6px 0 2px; color: var(--teal); }
.kpi .u { font-size: 12px; color: var(--char); font-weight: 600; }
.kpi .b { font-size: 11.5px; color: var(--grey); margin-top: 6px; line-height: 1.4; }
body.present .model-frame iframe { height: 60vh; }

/* ── Sites ─────────────────────────────────────────────────────────── */
.nw { display: grid; gap: 22px; margin-top: 8px; }
.nw-site { background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
           display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); }
.nw-site > * { min-width: 0; }
.nw-media { position: relative; background: #0f1a1c; min-height: 280px; }
.nw-media > img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 3; cursor: zoom-in; }
.nw-media.nw-noimg { background: linear-gradient(160deg, #003D45, var(--teal)); display: flex; align-items: center; justify-content: center; padding: 30px; color: #CFE7E2; font-size: 14px; text-align: center; }
.nw-thumbs { position: absolute; left: 12px; bottom: 12px; display: flex; gap: 7px; }
.nw-thumbs button { width: 54px; height: 40px; padding: 0; border: 2px solid rgba(255,255,255,.55); border-radius: 5px;
                    overflow: hidden; cursor: pointer; background: #fff; opacity: .78; }
.nw-thumbs button[aria-pressed=true] { border-color: var(--green); opacity: 1; }
.nw-thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nw-body { padding: 22px 24px 20px; display: flex; flex-direction: column; gap: 12px; }
.nw-body h3 { margin: 0; font-size: 21px; }
.nw-body ul.clean { margin: 0; }
.nw-body ul.clean li { font-size: 13.5px; }
.nw-where { margin: 0; font-size: 12.5px; color: var(--grey); font-family: var(--font-mono); }
.nw-status { display: inline-block; align-self: flex-start; font-size: 10.5px; font-weight: 700; letter-spacing: 1px;
             text-transform: uppercase; padding: 4px 9px; border-radius: 5px; }
.st-live { background: rgba(67,176,42,.14); color: #2f7d1e; }
.st-comm { background: #FBF1DF; color: #9A6408; }
.st-plan { background: var(--rtx-t); color: var(--rtx); }
.nw-facts { display: flex; flex-wrap: wrap; gap: 16px 22px; margin-top: 2px; }
.nw-facts div { min-width: 90px; }
.nw-facts b { display: block; font-family: var(--font-disp); font-size: 21px; color: var(--teal); line-height: 1.1; }
.nw-facts span { font-size: 12px; color: var(--grey); }
.nw-plan { margin: auto 0 0 !important; font-size: 13.5px; }
.nw-plan a { font-weight: 600; color: var(--teal); text-decoration: none; }
.nw-plan a:hover { text-decoration: underline; }
#nw-box { position: fixed; inset: 0; z-index: 12000; background: rgba(6,12,13,.94); display: none;
          align-items: center; justify-content: center; padding: 26px; cursor: zoom-out; }
#nw-box img { max-width: 100%; max-height: 88vh; object-fit: contain; background: #fff; border-radius: 6px; }
#nw-box .cap { position: absolute; bottom: 16px; left: 24px; right: 24px; text-align: center; color: #e6f0f1; font-size: 13px; }
@media (max-width: 900px) { .nw-site { grid-template-columns: 1fr; } .nw-media { min-height: 220px; } }
body.present .nw-site { grid-template-columns: minmax(0, .8fr) minmax(0, 1.4fr); }
body.present .nw-body ul.clean li { font-size: 12.5px; }
.btn-3d { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 12px 18px; border-radius: 10px; background: var(--teal); color: #fff; text-decoration: none; font-weight: 700; font-size: 14px; }
.btn-3d:hover { background: var(--teal-d); }

/* ── Work packages, comparability, responses ───────────────────────── */
.ws-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 8px; }
.ws-card { background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--green); border-radius: 12px; padding: 20px 22px 18px; box-shadow: 0 1px 2px rgba(0,0,0,0.03); }
.ws-card.ws-rtx { border-top-color: var(--rtx); }
.ws-card.ws-aqua { border-top-color: var(--aqua); }
.ws-num { font-family: var(--font-mono); font-size: 12px; color: var(--grey); letter-spacing: 0.5px; }
.ws-card h3 { margin: 4px 0 8px; font-size: 18px; }
.ws-card p { font-size: 14px; margin: 0 0 12px; max-width: none; }
.ws-card dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 12px; margin: 0; font-size: 12.5px; border-top: 1px solid var(--line); padding-top: 10px; }
.ws-card dt { color: var(--grey); font-weight: 600; white-space: nowrap; }
.ws-card dd { margin: 0; color: var(--char); }
.q-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 8px; }
.q-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 20px 22px 16px; }
.q-card h3 { margin: 0 0 4px; font-size: 19px; }
.q-ask { font-size: 12.5px; color: var(--grey); margin: 0 0 12px !important; line-height: 1.45; }
.q-card .summary { font-size: 14.5px; line-height: 1.55; max-width: none; margin: 0 0 10px; }
.q-card ul { margin: 0; padding-left: 18px; font-size: 13.5px; line-height: 1.5; }
.q-card li { margin-bottom: 6px; }
.q-card details { margin-top: 10px; }
.q-card summary { cursor: pointer; font-size: 12.5px; font-weight: 700; color: var(--teal); }
.q-card .ev { margin: 6px 0 0; padding-left: 18px; font-size: 12px; color: var(--grey); }
.unlocks details { border: 1px solid var(--line); border-radius: 10px; padding: 10px 16px; margin-bottom: 8px; background: var(--white); }
.unlocks summary { cursor: pointer; font-weight: 700; color: var(--teal); font-size: 14.5px; }
.unlocks p { font-size: 13.5px; margin: 8px 0 4px; max-width: none; }
.unlocks .src { display: block; margin-top: 4px; }
@media (max-width: 900px) { .ws-grid, .q-grid { grid-template-columns: 1fr; } }
body.present .ws-grid { grid-template-columns: repeat(3, 1fr); }
body.present .ws-card p { font-size: 12.5px; }

/* ── Technology-transfer timeline ──────────────────────────────────── */
.tt-controls { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 8px 0 14px; }
.tt-ctl { background: var(--fill); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; }
.tt-ctl label { display: flex; justify-content: space-between; font-size: 12.5px; font-weight: 700; color: var(--char); margin-bottom: 6px; }
.tt-ctl output { font-family: var(--font-mono); color: var(--teal); }
.tt-ctl input[type=range] { width: 100%; accent-color: var(--green); }
.tt-ctl .seg { display: flex; border: 1px solid var(--teal); border-radius: 6px; overflow: hidden; }
.tt-ctl .seg button { flex: 1; font: 600 12px var(--font); padding: 6px; border: 0; background: var(--white); color: var(--teal); cursor: pointer; }
.tt-ctl .seg button.on { background: var(--teal); color: #fff; }
.tt-ctl .hint { display: block; font-size: 11.5px; color: var(--grey); margin-top: 6px; line-height: 1.4; }
.tt-read { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 14px; }
.tt-read .ro { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; }
.tt-read .ro span { display: block; font-size: 11.5px; color: var(--grey); }
.tt-read .ro b { display: block; font-family: var(--font-disp); font-size: 24px; color: var(--teal); line-height: 1.1; margin: 4px 0 2px; }
.tt-read .ro b.late { color: #C8401F; }
.tt-read .ro em { font-style: normal; font-size: 11.5px; color: var(--grey); }
.tt-gantt { border: 1px solid var(--line); border-radius: 12px; overflow: auto; background: var(--white); }
.tt-gantt svg { display: block; min-width: 860px; width: 100%; height: auto; }
.tt-gantt .lbl { font: 600 12px var(--font); fill: var(--char); }
.tt-gantt .lbl-sub { font: 11px var(--font); fill: var(--grey); }
.tt-gantt .mon { font: 700 10.5px var(--font); fill: var(--grey); letter-spacing: .5px; }
.tt-gantt .bar { fill: var(--teal); rx: 4; }
.tt-gantt .bar.moved { fill: var(--aqua); }
.tt-gantt .bar.runs { fill: var(--green); }
.tt-gantt .bar.ind { fill: var(--rtx); }
.tt-gantt .ghost { fill: none; stroke: var(--grey); stroke-dasharray: 4 3; rx: 4; }
.tt-gantt .runlbl { font: 700 10.5px var(--font); fill: #fff; }
.tt-gantt .grid { stroke: var(--line); }
.tt-gantt .target { stroke: var(--rtx); stroke-width: 2; stroke-dasharray: 6 4; }
.tt-gantt .tlbl { font: 700 11px var(--font); fill: var(--rtx); }
@media (max-width: 900px) { .tt-controls, .tt-read { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tt-controls, .tt-read { grid-template-columns: 1fr; } }

/* ── Questions ─────────────────────────────────────────────────────── */
.qlist { counter-reset: q; list-style: none; padding: 0; margin: 8px 0 0; columns: 2; column-gap: 32px; }
.qlist li { counter-increment: q; break-inside: avoid; position: relative; padding: 8px 0 8px 40px; border-bottom: 1px solid var(--line); font-size: 14px; line-height: 1.5; }
.qlist li::before { content: counter(q); position: absolute; left: 0; top: 8px; width: 28px; text-align: right; font-family: var(--font-disp); font-weight: 700; color: var(--green); font-size: 15px; }
.qlist li label { display: flex; gap: 8px; align-items: flex-start; cursor: pointer; }
.qlist li input { margin-top: 5px; accent-color: var(--green); }
.qlist li.done { color: var(--grey); text-decoration: line-through; }
@media (max-width: 800px) { .qlist { columns: 1; } }
body.present .qlist { columns: 3; font-size: 12px; }
body.present .qlist li { font-size: 12px; padding: 4px 0 4px 34px; }

/* ── Workshop record ───────────────────────────────────────────────── */
.rec-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; margin-top: 8px; }
.rec-panel { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
.rec-panel h3 { margin: 0 0 10px; }
.log-form { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin: 8px 0 12px; }
.log-form input, .log-form select { font: 13px var(--font); padding: 8px 9px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); color: var(--char); min-width: 0; }
.log-form .wide { grid-column: span 2; }
.log-form button { grid-column: span 6; }
.btn { font: 700 13px var(--font); padding: 9px 14px; border-radius: 8px; border: 1px solid var(--teal); background: var(--teal); color: #fff; cursor: pointer; }
.btn:hover { background: var(--teal-d); }
.btn-ghost { background: var(--white); color: var(--teal); }
.btn-ghost:hover { background: var(--tint); }
.log-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.log-tbl td, .log-tbl th { font-size: 12.5px; padding: 7px 9px; }
.log-tbl td:last-child { text-align: right; white-space: nowrap; }
.log-tbl button { font: 600 11px var(--font); color: #A33A1F; background: none; border: 0; cursor: pointer; text-decoration: underline dotted; }
.log-empty { color: var(--grey); font-style: italic; font-size: 13px; padding: 8px 0; }
.wall { border: 2px dashed var(--line); border-radius: 12px; padding: 26px 20px; text-align: center; color: var(--grey); font-size: 13.5px; background: var(--fill); }
.wall b { display: block; color: var(--teal); font-family: var(--font-disp); font-size: 16px; margin-bottom: 6px; }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; line-height: 1.45; }
.checklist input { margin-top: 4px; accent-color: var(--green); }
.checklist li.done span { color: var(--grey); text-decoration: line-through; }
@media (max-width: 900px) { .rec-grid { grid-template-columns: 1fr; } .log-form { grid-template-columns: repeat(2, 1fr); } .log-form .wide, .log-form button { grid-column: span 2; } }
body.present .rec-grid { grid-template-columns: 1fr 1fr; }

/* ── Documents ─────────────────────────────────────────────────────── */
.doc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.doc-card { text-decoration: none; color: inherit; display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; transition: border-color .15s, box-shadow .15s; }
.doc-card:hover { border-color: var(--teal); box-shadow: 0 6px 18px rgba(0,84,95,0.08); }
.doc-icon { flex-shrink: 0; width: 46px; height: 56px; border-radius: 6px; background: var(--teal); color: var(--white); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; letter-spacing: 1px; }
.doc-card > span:last-child { display: flex; flex-direction: column; min-width: 0; }
.doc-title { display: block; font-size: 14.5px; font-weight: 700; color: var(--teal); }
.doc-desc { display: block; font-size: 12.5px; color: var(--grey); line-height: 1.4; margin-top: 4px; }
@media (max-width: 900px) { .doc-grid { grid-template-columns: 1fr; } }

/* ── Team ──────────────────────────────────────────────────────────── */
.team { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; margin-top: 8px; }
.member { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 18px 18px 14px; display: flex; flex-direction: column; min-width: 0; }
.member-img { width: 62px; height: 62px; border-radius: 50%; margin-bottom: 10px; border: 2px solid var(--green); object-fit: cover; object-position: top center; background: #fff; }
.member-initials { width: 62px; height: 62px; border-radius: 50%; margin-bottom: 10px; border: 2px solid var(--line); background: var(--tint); color: var(--teal); display: flex; align-items: center; justify-content: center; font-family: var(--font-disp); font-weight: 700; font-size: 20px; }
.member h3 { font-size: 15.5px; color: var(--char); margin: 0 0 3px; line-height: 1.28; }
.member-title { font-size: 12px; color: var(--green); font-weight: 700; line-height: 1.4; }
.member p { font-size: 13px; color: #444; line-height: 1.5; margin: 8px 0 0; }
.member-contact { margin-top: auto; padding-top: 8px; font-size: 12px; }
.member-contact a { color: var(--teal); text-decoration: none; overflow-wrap: anywhere; }
.team-h { font-size: 11.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--green); margin: 26px 0 10px; }
body.present .team { grid-template-columns: repeat(6, 1fr); gap: 10px; }
body.present .member { padding: 12px 12px 10px; }
body.present .member p, body.present .member-contact { display: none; }

/* ── Footer ────────────────────────────────────────────────────────── */
.foot { background: var(--teal); color: #CFE7E2; padding: 34px 0; margin-top: 60px; }
.foot p { margin: 0 0 6px; font-size: 14px; max-width: none; }
.foot strong { color: var(--white); }
.foot .micro { color: #9FCBC3; }

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1000px) { .facts { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px) { .agenda { grid-template-columns: 1fr; } .facts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .facts { grid-template-columns: 1fr 1fr; } .hero-docs .doc-btn { min-width: 0; width: 100%; } }

/* ── Nav: the section links on their own row ───────────────────────── */
.nav-inner { flex-wrap: wrap; height: auto; min-height: 64px; padding: 9px 0 0; }
.nav-inner .lockup { order: 1; }
.nav-model { order: 2; }
.nav-present { order: 3; margin-left: 6px; }
.nav-links { order: 4; flex: 1 1 100%; margin-left: 0; flex-wrap: wrap; overflow: visible;
             gap: 2px 16px; margin-top: 8px; padding: 7px 0 6px; border-top: 1px solid var(--line); }
.nav-links a { padding: 2px 0; }
main > section, main > .people-band { scroll-margin-top: 48px; }
@media (max-width: 760px) {
  .nav-links { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: thin; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
  .nav-links::-webkit-scrollbar { display: block; height: 4px; }
  .nav-links::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }
}
html.presenting main > section.wrap { border-top: none; }

/* QA 27 Sep 2026: document cards (styles.css keeps the card a column; title and description must stack)
   and the facility table (nine columns; let the headers wrap so the table fits the page width). */
.doc-card .doc-title { display: block; }
.doc-card .doc-desc { display: block; margin-top: 4px; }
#facility-table { width: 100%; table-layout: fixed; }
#facility-table th { white-space: normal; font-size: 10px; letter-spacing: 0.4px; padding: 8px 7px; }
#facility-table td { padding: 7px 7px; word-wrap: break-word; }
#facility-table th:first-child, #facility-table td:first-child { width: 12%; }

/* Agenda as a table (Joe, 26 Sep 2026) with the Made to Resolve illustration alongside */
.agenda-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); gap: 22px; align-items: start; margin-top: 8px; }
.agenda { display: block; margin-top: 0; }
.ag-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; font-size: 14px; }
.ag-table thead th { background: var(--teal); color: #fff; text-align: left; font-size: 11px; letter-spacing: 1.1px; text-transform: uppercase; padding: 10px 14px; }
.ag-table td { padding: 11px 14px; border-top: 1px solid var(--line); vertical-align: top; line-height: 1.4; }
.ag-table tbody tr:nth-child(even) td { background: #F6FAFA; }
.ag-table tr.ag-lite td { background: var(--fill); color: var(--grey); }
.ag-table td.ag-time { font-family: var(--font-mono); font-size: 12.5px; white-space: nowrap; color: var(--teal); width: 1%; }
.ag-table .ag-min { display: block; font-size: 11px; color: var(--grey); margin-top: 2px; }
.ag-table td.ag-title { font-family: var(--font-disp); font-weight: 700; color: var(--ink, #131318); font-size: 15px; }
.ag-table tr.ag-lite td.ag-title { font-weight: 600; color: var(--grey); }
.ag-table td.ag-lead { font-size: 12.5px; color: var(--green); font-weight: 600; width: 28%; }
.agenda-art { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px; }
.agenda-art img { display: block; width: 100%; height: auto; }
body.present .agenda-art { display: none; }
body.present .agenda-grid { grid-template-columns: 1fr; }
@media (max-width: 900px) { .agenda-grid { grid-template-columns: 1fr; } .agenda-art { max-width: 420px; } }
.ag-table td.ag-lead { display: table-cell; margin: 0; text-transform: none; letter-spacing: 0; font-size: 13px; line-height: 1.4; }
.ag-table td.ag-title { margin: 0; }

/* 3D fit-out embed (rtx-facility.made.bio allows framing by this origin) */
.f3d-tabs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 10px 0 12px; }
.f3d-tab { font: 600 13px var(--font); color: var(--teal); background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; cursor: pointer; }
.f3d-tab.on { background: var(--teal); color: #fff; border-color: var(--teal); }
.f3d-open { margin-left: auto; font: 600 13px var(--font); color: var(--teal); }
.f3d-frame { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #0b1a24; aspect-ratio: 16 / 9; min-height: 480px; }
.f3d-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
body.present .f3d-frame { aspect-ratio: auto; height: 78vh; }
