/* The film page: the site's shell (as the other pages carry it inline), the player, and the film's
   own fixed visual world, a 1920x1080 stage scaled to fit. */
:root {
  --bg: #ffffff; --surface: #f1f1f1; --card: #ffffff; --text: #000000; --muted: #555555; --border: #d9d9d9;
  --accent: #fc6401; --accent-tint: #ffe1ce; --accent-tint-2: #ffc39d; --code-bg: #f6f6f6;
  --permit: #1b6e3a; --deny: #a4262c; --hold: #7a4b00;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0d0d0d; --surface: #161616; --card: #1c1c1c; --text: #f5f5f5; --muted: #a9a9a9; --border: #3a3a3a;
    --accent-tint: #3a2210; --accent-tint-2: #5a3316; --code-bg: #121212; --permit: #86d9a3; --deny: #f3a0a4; --hold: #ffcc80;
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #0d0d0d; --surface: #161616; --card: #1c1c1c; --text: #f5f5f5; --muted: #a9a9a9; --border: #3a3a3a;
  --accent-tint: #3a2210; --accent-tint-2: #5a3316; --code-bg: #121212; --permit: #86d9a3; --deny: #f3a0a4; --hold: #ffcc80;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body { background: var(--bg); color: var(--text); font: 16px/1.6 ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif; -webkit-text-size-adjust: 100%; }
a { color: var(--accent); }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.88em; }
[hidden] { display: none !important; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 16px; }

.top { border-bottom: 1px solid var(--border); background: var(--bg); }
.top .wrap { display: flex; align-items: center; gap: 20px; padding-top: 14px; padding-bottom: 14px; }
.brand { flex: none; display: block; line-height: 0; }
.logo { height: 22px; width: auto; }
.logo-dark { display: none; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .logo-light { display: none; } :root:not([data-theme="light"]) .logo-dark { display: block; } }
:root[data-theme="dark"] .logo-light { display: none; }
:root[data-theme="dark"] .logo-dark { display: block; }
.titles { flex: 1; min-width: 0; }
.titles h1 { margin: 0; font-size: 20px; font-weight: 800; letter-spacing: -0.01em; }
.titles p { margin: 2px 0 0; color: var(--muted); font-size: 14px; }
.menu { flex: none; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 4px 16px; }
.menu a { color: var(--text); text-decoration: none; font-weight: 700; font-size: 14px; border-bottom: 2px solid transparent; padding-bottom: 1px; white-space: nowrap; }
.menu a:hover { color: var(--accent); }
.menu a[aria-current="page"] { border-bottom-color: var(--accent); }
.theme { flex: none; border: 1px solid var(--border); background: var(--card); color: inherit; font: inherit; font-size: 14px; border-radius: 8px; padding: 6px 10px; cursor: pointer; }
.theme:focus-visible, .menu a:focus-visible, .brand:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (max-width: 760px) { .top .wrap { flex-wrap: wrap; gap: 10px 16px; } .theme { margin-left: auto; } .titles { flex-basis: 100%; order: 3; } .menu { flex-basis: 100%; order: 4; justify-content: flex-start; gap: 4px 14px; } .logo { height: 18px; } }
@media (max-width: 900px) and (min-width: 761px) { .menu { max-width: 260px; } }

main { padding: 28px 0 56px; }
.eyebrow { margin: 0; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 800; }
.intro h2 { margin: 8px 0 10px; font-size: clamp(28px, 4vw, 44px); line-height: 1.06; letter-spacing: -0.02em; font-weight: 800; text-wrap: balance; }
.lede { margin: 0 0 22px; font-size: 18px; max-width: 70ch; color: var(--muted); }

.player { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 12px; }
.frame { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 12px; background: #F1F1F1; }
.bigplay { position: absolute; left: 50%; top: 62%; transform: translate(-50%, -50%); display: flex; align-items: center; gap: 10px; border: 0; border-radius: 999px; background: #FC6401; color: #fff; font: 700 17px/1 ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif; padding: 14px 22px 14px 18px; cursor: pointer; box-shadow: 0 12px 30px -12px rgba(252, 100, 1, .55); }
.bigplay svg { width: 22px; height: 22px; }
.controls { display: flex; align-items: center; gap: 10px; padding: 12px 4px 2px; }
.controls button { flex: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border); background: var(--card); color: var(--text); display: grid; place-items: center; cursor: pointer; padding: 0; }
.controls button svg { width: 20px; height: 20px; }
.bigplay:focus-visible, .controls button:focus-visible, .chapters button:focus-visible, #scrub:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.scrub { flex: 1; min-width: 0; position: relative; height: 40px; display: flex; align-items: center; }
#scrub { width: 100%; margin: 0; accent-color: var(--accent); }
.ticks { position: absolute; left: 8px; right: 8px; top: 6px; height: 6px; pointer-events: none; }
.ticks i { position: absolute; top: 0; width: 2px; height: 6px; border-radius: 1px; background: var(--muted); opacity: .55; }
.time { flex: none; font-variant-numeric: tabular-nums; color: var(--muted); font-size: 14px; min-width: 84px; text-align: right; }
.nowcap { display: none; margin: 10px 4px 4px; font-size: 16px; line-height: 1.5; min-height: 3em; }
@media (max-width: 760px) { .nowcap { display: block; } .time { min-width: 0; } }

.below { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 36px; }
@media (max-width: 860px) { .below { grid-template-columns: 1fr; } }
h3 { margin: 0 0 12px; font-size: 22px; letter-spacing: -0.01em; font-weight: 800; text-wrap: balance; }
.chapters { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.chapters button { width: 100%; display: grid; grid-template-columns: 30px 1fr auto; gap: 12px; align-items: center; text-align: left; padding: 9px 12px; border-radius: 12px; border: 1px solid var(--border); background: var(--card); color: var(--text); font: inherit; cursor: pointer; }
.chapters button[aria-current="true"] { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.chapters .n { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-tint); color: var(--text); font-weight: 700; font-size: 14px; }
.chapters .t { font-variant-numeric: tabular-nums; color: var(--muted); font-size: 14px; }
.notes p, .notes li { max-width: 62ch; }
.notes p { margin: 0 0 12px; }
.notes strong { font-weight: 700; }
.script { margin-top: 40px; }
.script ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; max-width: 760px; }
.script li { display: grid; grid-template-columns: 56px 1fr; gap: 14px; }
.script .ts { font-variant-numeric: tabular-nums; color: var(--muted); font-size: 14px; padding-top: 3px; }
.script .ch { display: block; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-weight: 800; margin-bottom: 2px; }
.foot { margin-top: 12px; padding-top: 16px; padding-bottom: 40px; border-top: 1px solid var(--border); color: var(--muted); font-size: 14px; }

/* ---------------------------------------------------------------- the film: one fixed visual world */
.stage { --f-paper: #F1F1F1; --f-ink: #000000; --f-muted: #5A5A5A; --f-line: #D6D6D6; --f-orange: #FC6401; --f-tint: #FFC39D; --f-tint2: #FFE1CE;
  --f-permit: #1B6E3A; --f-permit-bg: #E7F4EC; --f-deny: #A4262C; --f-deny-bg: #FBEAEA; --f-hold: #7A4B00; --f-hold-bg: #FFF1DC;
  position: absolute; left: 0; top: 0; width: 1920px; height: 1080px; transform-origin: 0 0; background: var(--f-paper); color: var(--f-ink); overflow: hidden;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 22px; line-height: 1.4; }
.stage * { box-sizing: border-box; }
.stage svg { display: block; }
.stage .mono { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; }
.rail { position: absolute; left: 70px; top: 38px; display: flex; gap: 10px; }
.pill { display: flex; align-items: center; gap: 9px; height: 46px; padding: 0 16px 0 8px; border-radius: 23px; border: 1.5px solid var(--f-line); background: rgba(255, 255, 255, .55); font-size: 19px; font-weight: 700; color: var(--f-muted); }
.pill b { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: #E4E4E4; font-size: 16px; }
.pill.on { background: var(--f-orange); border-color: var(--f-orange); color: #fff; }
.pill.on b { background: rgba(255, 255, 255, .22); color: #fff; }
.pill.done { color: var(--f-ink); border-color: var(--f-tint); }
.pill.done b { background: var(--f-tint2); color: var(--f-ink); }
.mark { position: absolute; right: 70px; top: 38px; display: flex; align-items: center; gap: 22px; font-size: 19px; color: var(--f-muted); letter-spacing: .02em; }
.mark img { height: 40px; width: auto; }

/* wires: the federation's lines, the hops, the resolve pulses */
.wires { position: absolute; left: 0; top: 0; width: 1920px; height: 1080px; pointer-events: none; overflow: visible; }
.wires path { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.wires .tree { stroke: #B9B9B9; stroke-width: 3; }
.wires .vouch { stroke: #B9B9B9; stroke-width: 3; }
.wires .hop { stroke: var(--f-ink); stroke-width: 3.5; }
.wires .glow { stroke: var(--f-orange); stroke-width: 6; opacity: 0; }
.wires .cut { stroke: var(--f-deny); stroke-width: 4; stroke-dasharray: 10 10; opacity: 0; }

/* the federation */
.node { position: absolute; background: #fff; border-radius: 16px; box-shadow: 0 0 0 1.5px var(--f-line); padding: 12px 18px; }
.node .hd { display: flex; align-items: center; gap: 12px; }
.node .hd .ico { flex: none; width: 40px; height: 40px; border-radius: 12px; background: var(--f-ink); color: #fff; display: grid; place-items: center; }
.node .hd .ico svg { width: 24px; height: 24px; }
.node .hd b { display: block; font-size: 22px; line-height: 1.15; font-weight: 800; letter-spacing: -.01em; }
.node .hd small { display: block; font-size: 16px; line-height: 1.25; color: var(--f-muted); margin-top: 2px; }
.node.ta { left: 500px; top: 112px; width: 380px; height: 72px; }
.node.ta .hd .ico { background: var(--f-orange); }
.node.mid { top: 232px; min-height: 130px; }
.node.mid#nw { left: 110px; width: 460px; }
.node.mid#reg { left: 780px; width: 470px; }
.strip { display: flex; flex-wrap: wrap; gap: 6px 8px; margin-top: 10px; }
.strip i { font-style: normal; font-size: 14.5px; line-height: 1; padding: 6px 10px; border-radius: 999px; background: var(--f-paper); color: var(--f-muted); border: 1px solid transparent; white-space: nowrap; }
.strip i.on { background: var(--f-tint2); border-color: var(--f-tint); color: var(--f-ink); font-weight: 700; }
.strip i.out { text-decoration: line-through; color: var(--f-deny); background: var(--f-deny-bg); }
.badge2 { position: absolute; left: -60px; right: -60px; top: 80px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 6px 12px; white-space: nowrap; border-radius: 10px; background: var(--f-tint2); border: 1.5px solid var(--f-tint); font-size: 16px; line-height: 1.3; color: var(--f-ink); }
.badge2 svg { width: 18px; height: 18px; flex: none; color: var(--f-orange); }
.regnote { position: absolute; left: 1060px; top: 214px; padding: 6px 14px; border-radius: 999px; background: var(--f-deny); color: #fff; font-size: 17px; font-weight: 800; }

/* the chain */
.tile { position: absolute; left: 0; top: 462px; width: 220px; height: 212px; background: #fff; border-radius: 16px; box-shadow: 0 0 0 1.5px var(--f-line); padding: 14px 16px; overflow: hidden; }
.tile.person { width: 150px; }
.tile .kind { display: flex; align-items: center; gap: 8px; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--f-muted); font-weight: 700; }
.tile .kind svg { width: 18px; height: 18px; }
.tile .kind .tm { margin-left: auto; width: 22px; height: 22px; color: var(--f-orange); }
.tile .nm { margin-top: 6px; font-size: 21px; line-height: 1.15; font-weight: 800; letter-spacing: -.01em; }
.tile .org { font-size: 15px; color: var(--f-muted); margin-top: 2px; }
.tile .codes { margin-top: 10px; display: flex; flex-direction: column; gap: 5px; }
.tile .codes span { font-size: 13.5px; line-height: 1.2; padding: 5px 8px; border-radius: 7px; background: var(--f-paper); color: var(--f-ink); border: 1px solid #E4E4E4; }
.tile .codes span b { color: var(--f-muted); font-weight: 700; }
.tile .codes span.bad { background: var(--f-deny-bg); border-color: var(--f-deny); color: var(--f-deny); }
.tile .codes span.bad b { color: var(--f-deny); }
.tile.person .nm { font-size: 24px; margin-top: 10px; }
.tile.person .face { width: 64px; height: 64px; border-radius: 50%; background: var(--f-tint2); color: var(--f-ink); display: grid; place-items: center; }
.tile.person .face svg { width: 40px; height: 40px; }
.tile .over { position: absolute; left: 0; right: 0; bottom: 0; padding: 9px 12px; font-size: 15px; line-height: 1.25; font-weight: 700; color: #fff; background: var(--f-deny); }
.tile .over.ask { background: var(--f-hold); }
.tile .res { position: absolute; left: 0; right: 0; bottom: 0; padding: 7px 12px; font-size: 14px; line-height: 1.25; white-space: nowrap; overflow: hidden; background: var(--f-permit-bg); color: var(--f-permit); font-weight: 700; }
.tile.dim { box-shadow: 0 0 0 1.5px var(--f-deny); }
.tok { position: absolute; left: 0; top: 696px; width: 244px; background: #fff; border-radius: 12px; box-shadow: 0 0 0 1.5px var(--f-line); padding: 8px 12px 10px; }
.tok .h { font-size: 11.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--f-muted); font-weight: 800; display: flex; align-items: center; gap: 6px; white-space: nowrap; overflow: hidden; }
.tok .h svg { width: 15px; height: 15px; }
.tok .b { margin-top: 5px; font-size: 15px; line-height: 1.25; }
.tok .b .lbl { color: var(--f-muted); }
.nest { display: inline-block; padding: 2px 7px 2px 8px; border-radius: 8px; border: 1.5px solid var(--f-ink); font-size: 14px; line-height: 1.1; font-weight: 700; white-space: nowrap; vertical-align: middle; }
.nest .nest { margin-left: 5px; border-color: var(--f-orange); }
.nest .nest .nest { border-color: var(--f-muted); }
.nest.o { border-color: var(--f-orange); }
.nest.three { border-color: var(--f-muted); }
.tok .b .tree { display: inline-block; width: 18px; color: var(--f-muted); text-align: right; margin-right: 4px; }
.stamp { position: absolute; left: 0; top: 808px; width: 220px; border-radius: 12px; padding: 8px 12px 9px; background: #fff; box-shadow: 0 0 0 2px var(--f-line); }
.stamp b { display: block; font-size: 19px; letter-spacing: .06em; font-weight: 900; line-height: 1.1; }
.stamp span { display: block; margin-top: 3px; font-size: 14px; line-height: 1.3; color: var(--f-muted); }
.stamp.permit { box-shadow: 0 0 0 2px var(--f-permit); background: var(--f-permit-bg); } .stamp.permit b { color: var(--f-permit); }
.stamp.deny { box-shadow: 0 0 0 2px var(--f-deny); background: var(--f-deny-bg); } .stamp.deny b { color: var(--f-deny); }
.stamp.hold { box-shadow: 0 0 0 2px var(--f-hold); background: var(--f-hold-bg); } .stamp.hold b { color: var(--f-hold); }
.stamp.consent { box-shadow: 0 0 0 2px var(--f-ink); } .stamp.consent b { color: var(--f-ink); }
.stamp.cmp { box-shadow: 0 0 0 1.5px #BDBDBD; background: #fff; }
.stamp.cmp b { color: var(--f-muted); font-size: 15px; letter-spacing: .04em; }
.stamp.cmp span { font-size: 13px; }
.check { position: absolute; left: 0; top: 0; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: #fff; z-index: 3; }
.check svg { width: 20px; height: 20px; }
.check.ok { background: var(--f-permit); } .check.no { background: var(--f-deny); }

/* the panel */
.panel { position: absolute; left: 1370px; top: 112px; width: 480px; height: 732px; background: #fff; border-radius: 22px; padding: 26px 30px; box-shadow: 0 0 0 1px rgba(0, 0, 0, .07), 0 24px 50px -30px rgba(0, 0, 0, .35); }
.plabel { font-size: 15px; letter-spacing: .14em; text-transform: uppercase; color: var(--f-muted); font-weight: 700; }
.pset { position: absolute; left: 30px; right: 30px; top: 62px; bottom: 26px; }
.pset h4 { margin: 0 0 16px; font-size: 29px; line-height: 1.12; font-weight: 800; letter-spacing: -.01em; }
.pit { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 12px; font-size: 20px; line-height: 1.34; }
.ico { flex: none; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; border: 2px solid #CFCFCF; background: #fff; color: #fff; }
.ico svg { width: 17px; height: 17px; }
.ico.info { border-color: var(--f-tint); background: var(--f-tint2); color: var(--f-ink); }
.rec { border-radius: 14px; border: 1.5px solid var(--f-line); background: #fff; padding: 14px 16px 12px; margin-bottom: 12px; position: relative; }
.rec .who { font-size: 20px; font-weight: 800; line-height: 1.15; }
.rec .who small { display: block; font-weight: 500; font-size: 15px; color: var(--f-muted); margin-top: 1px; }
.rec .lbl { margin-top: 10px; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--f-muted); font-weight: 800; }
.rec .codes { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 5px; }
.rec .codes span { font-size: 14px; padding: 4px 8px; border-radius: 7px; background: var(--f-paper); border: 1px solid #E4E4E4; }
.rec .codes span b { color: var(--f-muted); font-weight: 700; }
.rec p { margin: 4px 0 0; font-size: 18px; line-height: 1.38; }
.rec mark { background: var(--f-tint2); color: inherit; padding: 0 3px; border-radius: 4px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.rec mark.bad { background: var(--f-deny-bg); color: var(--f-deny); }
.rec .tag { position: absolute; right: 12px; top: 12px; font-size: 13px; padding: 4px 9px; border-radius: 999px; background: var(--f-tint2); border: 1px solid var(--f-tint); font-weight: 700; }
.rec .tag.self { background: var(--f-paper); border-color: #CFCFCF; color: var(--f-muted); }
.rec.own { border-color: var(--f-deny); }
.rec.vouched { border-color: var(--f-orange); }
.cred { border-radius: 14px; border: 1.5px solid var(--f-tint); background: var(--f-tint2); padding: 14px 16px 4px; margin-bottom: 14px; }
.cred .ch { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 15px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.cred .ch svg { width: 24px; height: 24px; color: var(--f-orange); }
.rw { display: grid; grid-template-columns: 118px 1fr; gap: 10px; padding: 9px 0; border-top: 1px solid var(--f-tint); font-size: 18px; line-height: 1.3; }
.rw span:first-child { color: var(--f-muted); }
.rw q { quotes: "\201C" "\201D"; font-style: italic; }
.rw .v { font-weight: 700; }
.rw .v.bad { color: var(--f-deny); }
.slm { display: inline-flex; align-items: center; gap: 8px; margin: -4px 0 12px; padding: 6px 12px; border-radius: 999px; background: var(--f-ink); color: #fff; font-size: 15px; font-weight: 700; }
.slm svg { width: 18px; height: 18px; color: var(--f-orange); }
.gate { margin-top: 10px; display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; border-radius: 12px; background: var(--f-paper); border: 1.5px solid #BDBDBD; font-size: 18px; line-height: 1.34; }
.gate b { font-weight: 800; }
.gate.deny { background: var(--f-deny-bg); border-color: var(--f-deny); }
.gate.deny b { color: var(--f-deny); }
.gate.hold { background: var(--f-hold-bg); border-color: var(--f-hold); }
.gate.hold b { color: var(--f-hold); }
.gate.permit { background: var(--f-permit-bg); border-color: var(--f-permit); }
.gate.permit b { color: var(--f-permit); }
.gate .ico { width: 28px; height: 28px; margin-top: 2px; }
.gate.deny .ico { background: var(--f-deny); border-color: var(--f-deny); }
.gate.hold .ico { background: var(--f-hold); border-color: var(--f-hold); }
.gate.permit .ico { background: var(--f-permit); border-color: var(--f-permit); }
.pnote { margin: 12px 0 0; font-size: 16.5px; line-height: 1.4; color: var(--f-muted); }
.token { margin: 0 0 12px; padding: 12px 14px; border-radius: 12px; background: var(--f-paper); border: 1px solid #E2E2E2; font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 14.5px; line-height: 1.55; white-space: pre; overflow: hidden; }
.token .k { color: var(--f-muted); }
.token .c { color: var(--f-orange); font-weight: 700; }
.token .a { color: var(--f-muted); font-family: ui-sans-serif, system-ui, sans-serif; font-size: 14px; }
.rules { list-style: none; margin: 0 0 12px; padding: 0; counter-reset: r; }
.rules li { display: flex; gap: 12px; align-items: baseline; padding: 6px 0; font-size: 18px; line-height: 1.3; color: var(--f-muted); border-top: 1px solid #ECECEC; }
.rules li b { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: #E6E6E6; color: var(--f-ink); font-size: 14px; font-weight: 800; line-height: 1; align-self: center; }
.rules li.on { color: var(--f-ink); font-weight: 700; }
.rules li.on b { background: var(--f-deny); color: #fff; }
.map { border-radius: 14px; border: 1.5px solid var(--f-line); padding: 12px 14px; margin-bottom: 12px; }
.map .lbl { font-size: 15px; color: var(--f-muted); }
.map .lbl b { color: var(--f-ink); }
.map .doms { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.map .doms span { font-size: 14px; padding: 4px 9px; border-radius: 999px; background: var(--f-tint2); border: 1px solid var(--f-tint); }
.qa { display: grid; grid-template-columns: 1fr; gap: 8px; margin-bottom: 8px; }
.qa div { padding: 10px 12px; border-radius: 10px; background: var(--f-paper); font-size: 17px; line-height: 1.32; }
.qa div b { display: block; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--f-muted); margin-bottom: 2px; }
.qa div i { font-style: normal; font-weight: 800; color: var(--f-hold); }
.cmpcard { margin-top: 12px; padding: 12px 14px; border-radius: 12px; border: 1.5px dashed #BDBDBD; font-size: 17px; line-height: 1.34; }
.cmpcard b.p { color: var(--f-permit); font-weight: 900; letter-spacing: .04em; }

.cap { position: absolute; left: 70px; right: 70px; bottom: 36px; height: 152px; z-index: 30; background: #fff; border-radius: 18px; padding: 18px 30px 0; box-shadow: 0 0 0 1px rgba(0, 0, 0, .07); }
.cap .chap { font-size: 19px; font-weight: 800; color: var(--f-orange); letter-spacing: .08em; text-transform: uppercase; }
.cap .lines { position: relative; margin-top: 6px; }
.cap .line { position: absolute; left: 0; right: 0; top: 0; margin: 0; font-size: 32px; line-height: 1.32; font-weight: 500; text-wrap: pretty; }

.card { position: absolute; inset: 0; z-index: 60; background: #fff; padding: 0 160px; }
.card .wmark { position: absolute; left: 160px; top: 96px; height: 56px; width: auto; }
.title { display: flex; flex-direction: column; justify-content: center; padding-top: 60px; }
.title .eb { font-size: 26px; letter-spacing: .14em; text-transform: uppercase; color: var(--f-orange); font-weight: 800; }
.title h1 { margin: 20px 0 0; max-width: 1450px; font-size: 108px; line-height: .98; letter-spacing: -.03em; font-weight: 800; color: var(--f-ink); text-wrap: balance; }
.title .sub { margin-top: 30px; max-width: 1300px; font-size: 40px; line-height: 1.2; color: var(--f-muted); }
.title .ft { position: absolute; left: 160px; bottom: 92px; font-size: 24px; color: var(--f-muted); }
.closing { display: flex; flex-direction: column; justify-content: center; padding-top: 80px; }
.closing .cols { display: grid; grid-template-columns: 1.2fr 1fr; gap: 90px; align-items: start; }
.closing h2 { margin: 0 0 26px; font-size: 44px; line-height: 1.05; letter-spacing: -.015em; font-weight: 800; color: var(--f-ink); }
.closing ol { list-style: none; margin: 0; padding: 0; }
.closing li { display: flex; gap: 22px; align-items: flex-start; margin-bottom: 24px; font-size: 31px; line-height: 1.3; }
.closing li b { flex: none; width: 50px; height: 50px; border-radius: 50%; background: var(--f-orange); color: #fff; display: grid; place-items: center; font-size: 25px; margin-top: -2px; }
.closing .bankp { margin: 0 0 18px; font-size: 30px; line-height: 1.34; }
.closing .small { position: absolute; left: 160px; right: 160px; bottom: 70px; display: flex; justify-content: space-between; gap: 60px; align-items: flex-end; font-size: 21px; line-height: 1.5; color: var(--f-muted); }
.closing .small p { margin: 0; max-width: 1080px; }
.closing .small .u { flex: none; text-align: right; font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 20px; line-height: 1.6; color: var(--f-orange); font-weight: 700; }

body.capture { background: #F1F1F1; }
body.capture .wrap { max-width: none; padding: 0; }
body.capture header, body.capture .intro, body.capture .controls, body.capture .nowcap, body.capture .below, body.capture .script, body.capture .foot, body.capture .bigplay { display: none !important; }
body.capture main { padding: 0; }
body.capture .player { border: 0; border-radius: 0; padding: 0; background: none; }
body.capture .frame { position: fixed; left: 0; top: 0; width: 1920px; height: 1080px; aspect-ratio: auto; border-radius: 0; }
