/* Platform page - synchronisation operator explainer. Layered on styles.css tokens.
 * Two animated figures: .sq (message sequence) and .som (operator model). Both are
 * complete static diagrams without JavaScript; platform.js only adds sequencing. */

.pf-section { padding-top: 99px; display: flex; flex-direction: column; gap: 42px; }
.pf-section__lead { font-family: var(--font-display); font-size: var(--text-lead); line-height: 1.35; color: var(--muted); max-width: 820px; margin-top: 14px; }
.section-head { max-width: 900px; }
.pf-section code, .pf-stage code, .pf-note code, .pf-table code, .pf-lsa code, .pf-lc code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.86em; background: var(--wash); color: var(--ink); padding: 2px 7px; border-radius: 6px; white-space: nowrap; }
.pf-section strong { font-weight: 600; color: var(--ink); }
.pf-section em { font-style: normal; color: var(--ink); }
.pf-section h3 { line-height: 1.2; }
.pf-section p { line-height: 1.55; }

/* ---- hero ---- */
.pf-hero { margin-top: 21px; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 21px; }
.pf-hero__copy { background: var(--wash); border-radius: var(--radius-lg); padding: 56px 49px; display: flex; flex-direction: column; gap: 28px; }
.pf-hero h1 { font-size: clamp(40px, 4.6vw, 68px); line-height: 0.98; letter-spacing: -0.045em; }
.pf-hero__lead { font-family: var(--font-display); font-size: var(--text-lead); line-height: 1.35; color: var(--muted); }
.pf-hero__actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-top: 7px; }
.pf-hero__stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 21px; }
.pf-stat { background: var(--panel); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; justify-content: space-between; gap: 21px; min-height: 190px; }
.pf-stat__n { flex: 1; display: flex; align-items: center; justify-content: center; text-align: center; font-family: var(--font-display); font-size: clamp(32px, 3vw, 44px); line-height: 1; letter-spacing: -0.04em; color: var(--ink); }
.pf-stat__n--low { padding-top: 22px; }
.pf-stat__l { font-size: 13px; line-height: 1.5; color: var(--text); }

/* ---- function: three stages ---- */
.pf-cols3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 21px; }
.pf-col { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 11px; font-size: 15px; }
.pf-col__n { font-family: var(--font-display); font-size: 36px; line-height: 1; letter-spacing: -0.04em; color: var(--lilac); }
.pf-col h3 { font-size: 22px; }
.pf-band { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 21px; background: var(--wash); border-radius: var(--radius-lg); padding: 35px 42px; }
.pf-band__item { font-size: 15px; line-height: 1.55; }

/* ---- shared figure + stage list layout ---- */
.pf-stage-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 21px; align-items: start; }
.pf-figure { background: var(--panel); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.pf-figure svg { width: 100%; height: auto; display: block; }
.pf-controls { display: flex; align-items: center; gap: 9px; padding-top: 4px; }
.pf-ctl { width: 40px; height: 40px; border-radius: var(--radius-pill); border: 1px solid var(--ink); background: transparent; color: var(--ink); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s ease, color 0.2s ease; }
.pf-ctl:hover { background: var(--paper); }
.pf-ctl--play { background: var(--ink); color: var(--paper); }
.pf-ctl--play:hover { background: var(--ink-hover); }
.pf-ctl svg[hidden] { display: none; }
.pf-now { margin-left: 9px; font-size: var(--text-small); color: var(--ink); font-variant-numeric: tabular-nums; }

.pf-stages { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.pf-stage { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.pf-stage__btn { width: 100%; display: flex; align-items: center; gap: 14px; padding: 16px 21px; background: none; border: 0; cursor: pointer; text-align: left; font: inherit; color: var(--text); }
.pf-stage__n { width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; background: var(--wash); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; transition: background 0.3s ease, color 0.3s ease; }
.pf-stage__t { font-family: var(--font-display); font-size: 18px; letter-spacing: -0.01em; color: var(--ink); line-height: 1.25; }
.pf-stage__body { display: none; padding: 0 21px 21px 65px; flex-direction: column; gap: 12px; font-size: 15px; line-height: 1.55; }
.pf-stage.is-active { border-color: var(--ink); box-shadow: 0 12px 40px rgba(79, 0, 184, 0.08); }
.pf-stage.is-active .pf-stage__n { background: var(--ink); color: var(--paper); }
.pf-stage.is-active .pf-stage__body { display: flex; }
.pf-stage.is-done .pf-stage__n { background: var(--mint); }
.pf-msgs { margin: 4px 0 0; display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; align-items: center; font-size: 14px; }
.pf-msgs dt, .pf-msgs dd { margin: 0; }
.pf-msgs dd { color: var(--muted); }

/* ---- Figure A: sequence ---- */
.sq-band rect { fill: var(--paper); stroke: var(--line); }
.sq-band text { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; fill: var(--muted); }
.sq-band__n { fill: var(--ink); }
.sq-band.is-active rect { stroke: var(--ink); }
.sq-life { stroke: var(--ink); stroke-opacity: 0.25; stroke-width: 1.25; stroke-dasharray: 3 5; }
.sq-head rect { fill: var(--paper); stroke: var(--line); }
.sq-head__t { font-family: var(--font-display); font-size: 16px; letter-spacing: -0.02em; fill: var(--ink); text-anchor: middle; }
.sq-head__s { font-family: var(--font-body); font-size: 10.5px; fill: var(--muted); text-anchor: middle; }
.sq-head--rtgs rect { fill: var(--wash); stroke: var(--lilac); }
.sq-head--so rect { fill: var(--ink); stroke: var(--ink); }
.sq-head--so .sq-head__t { fill: var(--paper); }
.sq-head--so .sq-head__s { fill: var(--lilac); }
.sq-leg rect { fill: var(--lilac); }
.sq-leg text { font-family: var(--font-body); font-size: 9.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; fill: var(--ink); text-anchor: middle; }
.sq-msg line { stroke: var(--ink); stroke-width: 1.5; stroke-linecap: round; }
.sq-msg polygon { fill: var(--ink); }
.sq-msg text { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 10px; font-weight: 600; fill: var(--ink); text-anchor: middle; }
.sq-msg--status line { stroke-width: 1.25; stroke-opacity: 0.55; }
.sq-msg--status polygon { fill-opacity: 0.7; }
.sq-msg--status text { font-weight: 500; fill: var(--muted); }
.sq-msg--in line { stroke-width: 2; }
.sq-msg--in text { font-family: var(--font-body); font-size: 10px; }
.sq-act rect { fill: var(--paper); stroke: var(--ink); stroke-width: 1.5; }
.sq-act text { font-family: var(--font-body); font-size: 11px; font-weight: 600; fill: var(--ink); text-anchor: middle; }
.sq-act--so rect { fill: var(--ink); }
.sq-act--so text { fill: var(--paper); }
.sq-act.is-done rect { fill: var(--mint); stroke: var(--mint); }
.sq-act--so.is-done rect { fill: var(--ink); stroke: var(--ink); }

/* sequencing: hidden until revealed, then the line draws and the label/arrow follow */
.mp-js .sq-msg, .mp-js .sq-act { opacity: 0; transition: opacity 0.25s ease; }
.mp-js .sq-msg line { stroke-dasharray: 1; stroke-dashoffset: 1; }
.mp-js .sq-msg polygon, .mp-js .sq-msg text { opacity: 0; transition: opacity 0.2s ease; }
.mp-js .sq-msg.is-in, .mp-js .sq-act.is-in { opacity: 1; }
.mp-js .sq-msg.is-in line { stroke-dashoffset: 0; transition: stroke-dashoffset 0.45s cubic-bezier(0.4, 0, 0.2, 1); }
.mp-js .sq-msg.is-in polygon, .mp-js .sq-msg.is-in text { opacity: 1; transition-delay: 0.3s; }
.mp-js .sq-act.is-in rect { animation: sq-pop 0.4s var(--ease-out); transform-box: fill-box; transform-origin: center; }
.mp-js .sq-msg.is-now, .mp-js .sq-act.is-now { transition: none; }
.mp-js .sq-msg.is-now line { transition: none; }
.mp-js .sq-msg.is-now polygon, .mp-js .sq-msg.is-now text { transition: none; }
.mp-js .sq-act.is-now rect { animation: none; }
@keyframes sq-pop { from { transform: scale(0.9); } to { transform: scale(1); } }

/* ---- Figure B: operator model ---- */
.som-op rect { fill: var(--lilac-light); }
.som-op__l { font-family: var(--font-display); font-size: 17px; letter-spacing: -0.02em; fill: var(--ink); text-anchor: middle; }
.som-group rect { fill: var(--paper); stroke: var(--line); }
.som-group line { stroke: var(--line); stroke-width: 1.5; }
.som-bank use { fill: none; stroke: var(--ink); stroke-width: 1.4; stroke-linejoin: round; stroke-linecap: round; transition: stroke 0.3s ease; }
.som-bank__t { font-family: var(--font-display); font-size: 15px; letter-spacing: -0.01em; fill: var(--ink); text-anchor: middle; }
.som-bank__s { font-family: var(--font-body); font-size: 11px; fill: var(--muted); text-anchor: middle; }
.som-bank { opacity: 0.55; transition: opacity 0.35s ease; }
.som-bank.is-on { opacity: 1; }
.som-step line { stroke: var(--ink); stroke-width: 1.5; }
.som-step polygon { fill: var(--ink); }
.som-step circle { fill: var(--ink); transition: fill 0.3s ease; }
.som-step text { font-family: var(--font-body); font-size: 12px; font-weight: 700; fill: var(--paper); text-anchor: middle; }
.som-step { opacity: 0.35; transition: opacity 0.35s ease; }
.som-step.is-on { opacity: 1; }
.som-step.is-on circle { fill: var(--ink); }
.som-step.is-done { opacity: 1; }
.som-step.is-done circle { fill: var(--muted); }
.som-rtgs rect, .som-mi rect { fill: var(--paper); stroke: var(--line); transition: stroke 0.3s ease, stroke-width 0.3s ease; }
.som-rtgs rect { fill: var(--wash); stroke: var(--lilac); }
.som-rtgs__t, .som-mi__t { font-family: var(--font-display); font-size: 16px; letter-spacing: -0.02em; fill: var(--ink); text-anchor: middle; }
.som-rtgs__s, .som-mi__s { font-family: var(--font-body); font-size: 10.5px; fill: var(--muted); text-anchor: middle; }
.som-rtgs.is-on > rect, .som-mi.is-on > rect { stroke: var(--ink); stroke-width: 2; }
.som-badge rect { fill: var(--paper); stroke: var(--line); transition: fill 0.3s ease; }
.som-badge text { font-family: var(--font-body); font-size: 10px; font-weight: 600; fill: var(--ink); text-anchor: middle; }
.som-rtgs.is-on .som-badge rect, .som-rtgs.is-done .som-badge rect { fill: var(--mint); stroke: var(--mint); }
.som-platform rect { fill: var(--ink); transition: filter 0.4s ease; }
.som-platform__t { font-family: var(--font-body); font-size: 11px; fill: var(--paper); fill-opacity: 0.85; text-anchor: middle; }
.som-platform__l { font-family: var(--font-body); font-size: 10.5px; fill: var(--lilac); text-anchor: middle; }
.som-platform.is-on rect { filter: drop-shadow(0 0 18px rgba(79, 0, 184, 0.55)); }
.som-node > rect { fill: none; stroke: var(--paper); stroke-opacity: 0.35; }
.som-node__l { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.04em; fill: var(--lilac); text-anchor: middle; }
.som-mod rect { fill: var(--paper); fill-opacity: 0.12; stroke: var(--paper); stroke-opacity: 0.3; transition: fill 0.35s ease, fill-opacity 0.35s ease; }
.som-mod text { font-family: var(--font-display); font-size: 13.5px; letter-spacing: -0.01em; fill: var(--paper); text-anchor: middle; transition: fill 0.35s ease; }
.som-mod.is-on rect { fill: var(--mint); fill-opacity: 1; stroke: var(--mint); }
.som-mod.is-on text { fill: var(--ink); }
.som-mod.is-done rect { fill: var(--paper); fill-opacity: 0.32; }
.som-chip { opacity: 0; transition: opacity 0.3s ease; }
.som-chip.is-on { opacity: 1; }
.som-chip rect { fill: var(--mint); }
.som-chip text { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 11px; font-weight: 600; fill: var(--ink); text-anchor: middle; }
.som-dots circle { fill: var(--mint); stroke: var(--ink); stroke-width: 1.5; }
.som-dots .som-dot--dark { fill: var(--ink); stroke: var(--paper); }

/* ---- architecture properties ---- */
.pf-arch { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 21px; }
.pf-arch__item { background: var(--wash); border-radius: var(--radius); padding: 35px; display: flex; flex-direction: column; gap: 11px; font-size: 15px; }
.pf-arch__item h3 { font-size: 24px; }
.pf-arch__item--dark { background: var(--lilac); }

/* ---- node components ---- */
.pf-comps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 21px; }
.pf-comp { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.pf-comp h3 { font-size: 19px; }
.pf-api { background: var(--panel); border-radius: var(--radius-lg); padding: 35px; display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 42px; align-items: start; }
.pf-api__head { display: flex; flex-direction: column; gap: 11px; }
.pf-api__head h3 { font-size: 26px; }
.pf-api__head p { font-size: 15px; color: var(--muted); }
.pf-api__table { background: var(--paper); border-radius: var(--radius); overflow: hidden; }
.pf-api__row { display: grid; grid-template-columns: 1.5fr 0.4fr 2fr; gap: 21px; padding: 12px 21px; border-bottom: 1px solid var(--line); font-size: 14px; align-items: center; }
.pf-api__row:last-child { border-bottom: 0; }
.pf-api__row--head span { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.pf-api__row > span:nth-child(2) { font-weight: 600; color: var(--ink); }
.pf-api__row code { background: none; padding: 0; font-size: 12.5px; white-space: normal; }

/* ---- ledger ---- */
.pf-ledger { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 21px; align-items: start; }
.pf-ledger__lists { display: flex; flex-direction: column; gap: 21px; }
.pf-ledger__list { background: var(--wash); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 11px; }
.pf-ledger__list--off { background: var(--paper); border: 1px solid var(--line); }
.pf-ledger__list h3 { font-size: 22px; }
.pf-ledger__list ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pf-ledger__list li { position: relative; padding-left: 18px; font-size: 14.5px; line-height: 1.5; }
.pf-ledger__list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--ink); }
.pf-match { background: var(--panel); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 18px; }
.pf-match__head { display: flex; flex-direction: column; gap: 7px; }
.pf-match__head h3 { font-size: 22px; }
.pf-match__head p { font-size: 14px; }
.pf-match__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.pf-code { margin: 0; background: var(--paper); border-radius: var(--radius); padding: 18px; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 11.5px; line-height: 1.55; color: var(--text); overflow-x: auto; }
.pf-code__c { color: var(--muted); }
.pf-code__h { color: var(--ink); font-weight: 600; word-break: break-all; white-space: normal; display: block; }
.pf-match__result .pill { white-space: normal; line-height: 1.4; }

.pf-contracts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 21px; }
.pf-contract { border-top: 2px solid var(--ink); padding-top: 18px; display: flex; flex-direction: column; gap: 9px; font-size: 15px; }
.pf-contract__k { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.pf-contract h3 { font-size: 20px; }
.pf-contract--wide { grid-column: 1 / -1; background: var(--wash); border-top: 0; border-radius: var(--radius); padding: 28px 35px; }
.pf-contract--wide h3 { font-size: 24px; }

/* ---- liquidity ---- */
.pf-lsa { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 21px; }
.pf-lsa__card { background: var(--wash); border-radius: var(--radius-lg); padding: 42px; display: flex; flex-direction: column; gap: 14px; font-size: 15px; }
.pf-lsa__card--accent { background: var(--lilac-light); }
.pf-lsa__k { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.pf-lsa__card h3 { font-size: 26px; }
.pf-lsa__card ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 7px; }
.pf-lsa__card li { position: relative; padding-left: 18px; }
.pf-lsa__card li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--ink); }
.pf-flow { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin: 7px 0; }
.pf-flow span { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 6px 12px; font-size: 12.5px; color: var(--ink); white-space: nowrap; }
.pf-flow i { width: 14px; height: 1px; background: var(--ink); position: relative; flex-shrink: 0; }
.pf-flow i::after { content: ""; position: absolute; right: -1px; top: -3px; border: 3.5px solid transparent; border-left-color: var(--ink); }
.pf-lsa2 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 21px; }
.pf-lsa2__item { border-top: 2px solid var(--ink); padding-top: 18px; display: flex; flex-direction: column; gap: 9px; font-size: 15px; }
.pf-lsa2__item h3 { font-size: 20px; }

/* ---- life cycle ---- */
.pf-lc { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 21px; align-items: start; }
.pf-lc__steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.pf-lc__steps li { display: flex; gap: 18px; padding: 21px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.pf-lc__steps li:first-child { padding-top: 0; }
.pf-lc__steps li:last-child { border-bottom: 0; }
.pf-lc__steps h3 { font-size: 19px; margin-bottom: 4px; }
.pf-lc__n { width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%; background: var(--wash); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
.pf-lc__side { display: flex; flex-direction: column; gap: 21px; }
.pf-lc__panel { background: var(--panel); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 11px; font-size: 15px; }
.pf-lc__panel--wash { background: var(--wash); }
.pf-lc__panel h3 { font-size: 21px; }
.pf-lc__panel ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 7px; }
.pf-lc__panel li { position: relative; padding-left: 18px; }
.pf-lc__panel li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--ink); }

/* ---- insights ---- */
.pf-insights { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 21px; }
.pf-insight { border-radius: var(--radius); padding: 35px; display: flex; flex-direction: column; gap: 12px; }
.pf-insight--lilac { background: var(--lilac-light); }
.pf-insight--wash { background: var(--wash); }
.pf-insight--dark { background: var(--lilac); }
.pf-insight__k { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.pf-insight h3 { font-size: 24px; }
.pf-insight__lead { font-family: var(--font-display); font-size: 17px; line-height: 1.35; color: var(--ink); }
.pf-insight ul { margin: 4px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pf-insight li { position: relative; padding-left: 18px; font-size: 14.5px; line-height: 1.5; }
.pf-insight li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--ink); }

/* ---- RTGS capability table ---- */
.pf-table { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.pf-table__row { display: grid; grid-template-columns: 1fr 1.6fr 1.3fr; gap: 21px; padding: 18px 24px; border-bottom: 1px solid var(--line); font-size: 15px; line-height: 1.5; }
.pf-table__row:last-child { border-bottom: 0; }
.pf-table__row > span:first-child { font-family: var(--font-display); font-size: 17px; color: var(--ink); }
.pf-table__row > span:nth-child(2) { color: var(--text); }
.pf-table__row > span:nth-child(3) { color: var(--muted); }
.pf-table__row--head { background: var(--wash); }
.pf-table__row--head span, .pf-table__row--head > span:first-child { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

.cta { padding-top: 99px; }

/* ==== responsive ==== */
@media (max-width: 1180px) {
  .pf-comps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pf-insights { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1100px) {
  .pf-hero { grid-template-columns: 1fr; }
  .pf-stage-grid, .pf-ledger, .pf-lsa, .pf-lc { grid-template-columns: 1fr; }
  .pf-api { grid-template-columns: 1fr; gap: 21px; }
  .pf-cols3, .pf-band, .pf-notes, .pf-arch, .pf-contracts, .pf-lsa2 { grid-template-columns: 1fr 1fr; }
  .pf-contract--wide { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .pf-section { padding-top: 70px; gap: 28px; }
  .pf-hero__copy { padding: 35px 24px; }
  .pf-stat { min-height: 0; padding: 21px; }
  .pf-cols3, .pf-band, .pf-notes, .pf-arch, .pf-contracts, .pf-lsa2, .pf-comps, .pf-insights, .pf-match__grid { grid-template-columns: 1fr; }
  .pf-band { padding: 24px; }
  .pf-figure { padding: 14px; }
  .pf-stage__body { padding-left: 21px; }
  .pf-api { padding: 21px; }
  .pf-api__row { grid-template-columns: 1fr; gap: 4px; }
  .pf-api__row--head { display: none; }
  .pf-lsa__card { padding: 28px 24px; }
  .pf-insight, .pf-arch__item { padding: 28px 24px; }
  .pf-table__row { grid-template-columns: 1fr; gap: 6px; padding: 16px 18px; }
  .pf-table__row--head { display: none; }
  .pf-match { padding: 18px; }
}
@media (max-width: 480px) {
  .pf-hero__stats { grid-template-columns: 1fr; }
  .pf-now { display: none; }
  .pf-flow span { white-space: normal; }
}
