
/* ============================================================
   §WH — SUPPLEMENTARY CSS (Hosting & Maintenance page-specific)
   Reuses master-css tokens. New mini-components only.
   ============================================================ */
/* responsive heading break helper */
.rsg-page .hd-ln { display: block; }
@media (max-width: 600px) { .rsg-page .hd-ln { display: inline; } }

/* hero backdrop framing — shift crop window so the engineer sits clearly visible and clear of the phone (page-local override) */
.rsg-page .platform-hero-photo img { object-position: 60% 50% !important; }

/* hero phone — website health monitor screen */
.rsg-page .ph-site { background: linear-gradient(135deg, var(--green-700), #0A0A0A); padding: 12px 13px 13px; color: #fff; }
.rsg-page .ph-site-bar { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.14); border-radius: 7px; padding: 5px 9px; margin-bottom: 11px; }
.rsg-page .ph-site-bar svg { width: 11px; height: 11px; color: #7BE3A4; flex-shrink: 0; }
.rsg-page .ph-site-bar span { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.04em; color: rgba(255,255,255,0.92); }
.rsg-page .ph-site-h { font-family: var(--font-display); font-weight: 800; font-size: 14px; line-height: 1.2; margin: 0 0 3px; color: #fff; }
.rsg-page .ph-site-sub { font-size: 9.5px; color: rgba(255,255,255,0.7); margin: 0 0 10px; }
.rsg-page .ph-site-cta { display: inline-flex; align-items: center; gap: 6px; background: var(--green-500); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 10px; padding: 7px 12px; border-radius: 7px; }
.rsg-page .ph-site-cta svg { width: 11px; height: 11px; }
.rsg-page .ph-health { padding: 13px 13px 15px; background: #fff; }
.rsg-page .ph-health-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 11px; }
.rsg-page .ph-health-top strong { font-family: var(--font-display); font-size: 11.5px; font-weight: 800; color: var(--ink-900); }
.rsg-page .ph-health-live { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-mono); font-size: 7.5px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--green-600); }
.rsg-page .ph-health-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 3px rgba(44,122,75,0.2); animation: pulse 2s infinite; }
.rsg-page .ph-hrow { display: flex; align-items: center; gap: 9px; padding: 8px 0; border-bottom: 1px solid var(--line-2); }
.rsg-page .ph-hrow:last-child { border-bottom: 0; }
.rsg-page .ph-hrow .ph-hic { width: 24px; height: 24px; border-radius: 7px; background: var(--green-50); color: var(--green-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rsg-page .ph-hrow .ph-hic svg { width: 13px; height: 13px; }
.rsg-page .ph-hrow .ph-hlabel { font-family: var(--font-body); font-size: 11px; font-weight: 600; color: var(--ink-900); flex: 1; }
.rsg-page .ph-hrow .ph-hstatus { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: 0.04em; color: var(--green-600); }
.rsg-page .ph-hrow .ph-hstatus::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green-500); }

/* generic icon feature card grid (hosting features, QA checks) */
.rsg-page .wh-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0 0 8px; }
.rsg-page .wh-feat-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 22px 20px; box-shadow: var(--shadow-md); transition: transform .25s, box-shadow .25s, border-color .25s; }
.rsg-page .wh-feat-card:hover { transform: translateY(-3px); border-color: rgba(44,122,75,0.3); box-shadow: 0 16px 36px rgba(0,0,0,0.07); }
.rsg-page .wh-feat-card .wf-ic { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, var(--green-500), var(--green-700)); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; box-shadow: 0 8px 18px rgba(44,122,75,0.22); }
.rsg-page .wh-feat-card .wf-ic svg { width: 20px; height: 20px; }
.rsg-page .wh-feat-card h4 { font-family: var(--font-display); font-size: 15.5px; font-weight: 700; color: var(--ink-900); margin: 0 0 6px; line-height: 1.3; }
.rsg-page .wh-feat-card p { font-size: 13px; line-height: 1.58; color: var(--ink-2); margin: 0; }
@media (max-width: 900px) { .rsg-page .wh-feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .rsg-page .wh-feat-grid { grid-template-columns: 1fr; } }

/* numbered security-layer cards */
.rsg-page .wh-layers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0 0 32px; }
.rsg-page .wh-layer { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 22px 20px; box-shadow: var(--shadow-md); transition: transform .25s, box-shadow .25s, border-color .25s; }
.rsg-page .wh-layer:hover { transform: translateY(-3px); border-color: rgba(44,122,75,0.3); box-shadow: 0 16px 36px rgba(0,0,0,0.07); }
.rsg-page .wh-layer::after { content: ""; position: absolute; top: -38px; right: -38px; width: 120px; height: 120px; background: radial-gradient(circle, rgba(44,122,75,0.07) 0%, transparent 70%); pointer-events: none; }
.rsg-page .wh-layer .wl-head { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; }
.rsg-page .wh-layer .wl-num { font-family: var(--font-display); font-size: 12px; font-weight: 800; color: var(--green-700); background: var(--green-50); border: 1px solid rgba(44,122,75,0.2); border-radius: 999px; padding: 4px 11px; letter-spacing: 0.06em; }
.rsg-page .wh-layer .wl-ic { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg, var(--green-500), var(--green-700)); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 6px 14px rgba(44,122,75,0.24); }
.rsg-page .wh-layer .wl-ic svg { width: 18px; height: 18px; }
.rsg-page .wh-layer h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--ink-900); margin: 0 0 7px; line-height: 1.28; }
.rsg-page .wh-layer p { font-size: 13px; line-height: 1.58; color: var(--ink-2); margin: 0; position: relative; z-index: 1; }
@media (max-width: 900px) { .rsg-page .wh-layers { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .rsg-page .wh-layers { grid-template-columns: 1fr; } }

/* screenshot strip (3-up ai-dashboard frames) */
.rsg-page .wh-shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 8px 0 0; }
.rsg-page .wh-shots .ai-dashboard { margin: 0; }
@media (max-width: 900px) { .rsg-page .wh-shots { grid-template-columns: 1fr; } }
/* 2-up variant — mobile-first so it never gets stuck wide on phones */
.rsg-page .wh-shots.cols-2 { grid-template-columns: 1fr; }
@media (min-width: 761px) { .rsg-page .wh-shots.cols-2 { grid-template-columns: 1fr 1fr; } }
/* §4 hosting fleet row — cover-crop both frames to one consistent 16:9 box (equal height) */
.rsg-page .wh-host .ai-dashboard img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: left bottom; display: block; }

/* edit-requests two-col (common requests + report shot) */
.rsg-page .wh-edit-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; margin-top: 44px; }
@media (min-width: 821px) { .rsg-page .wh-edit-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }

/* response flow (if compromised) */
.rsg-page .resp-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 18px 0 0; counter-reset: rf; }
.rsg-page .rf-step { position: relative; background: var(--paper-soft); border: 1px solid var(--line); border-radius: 14px; padding: 18px 18px 16px; }
.rsg-page .rf-step .rf-num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg, var(--green-500), var(--green-700)); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 13px; margin-bottom: 11px; box-shadow: 0 6px 14px rgba(44,122,75,0.24); }
.rsg-page .rf-step strong { display: block; font-family: var(--font-display); font-size: 13.5px; color: var(--ink-900); margin-bottom: 5px; line-height: 1.3; }
.rsg-page .rf-step p { font-size: 12.5px; line-height: 1.55; color: var(--ink-2); margin: 0; }
@media (max-width: 820px) { .rsg-page .resp-flow { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .rsg-page .resp-flow { grid-template-columns: 1fr; } }

/* definition chip list (§2) */
.rsg-page .wh-def { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--green-500); border-radius: 16px; padding: 26px 28px; box-shadow: var(--shadow-md); margin: 0 0 8px; }
.rsg-page .wh-def-lead { font-size: 16px; line-height: 1.6; color: var(--ink-900); margin: 0 0 20px; font-weight: 500; }
.rsg-page .wh-def-lead strong { color: var(--green-700); }
.rsg-page .wh-chips { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.rsg-page .wh-chip { display: flex; align-items: center; gap: 10px; background: var(--paper-soft); border: 1px solid var(--line); border-radius: 11px; padding: 12px 14px; font-family: var(--font-display); font-weight: 700; font-size: 13.5px; color: var(--ink-900); transition: border-color .2s, transform .2s; }
.rsg-page .wh-chip:hover { border-color: rgba(44,122,75,0.34); transform: translateY(-2px); }
.rsg-page .wh-chip .wh-chip-ic { width: 26px; height: 26px; border-radius: 7px; background: var(--green-50); color: var(--green-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rsg-page .wh-chip .wh-chip-ic svg { width: 14px; height: 14px; }
@media (max-width: 760px) { .rsg-page .wh-chips { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .rsg-page .wh-chips { grid-template-columns: 1fr; } }

/* scale-back drift split (§12) — premium comparison cards */
.rsg-page .wh-drift { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 8px 0 0; align-items: stretch; }
.rsg-page .wh-drift-col { position: relative; display: flex; flex-direction: column; border-radius: 18px; padding: 0; border: 1px solid var(--line); overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform .2s, box-shadow .2s; }
.rsg-page .wh-drift-col:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(0,0,0,0.10); }
.rsg-page .wh-drift-col.bad { background: linear-gradient(165deg, #FFFFFF 0%, #FCEFEF 100%); border-color: rgba(200,32,43,0.20); }
.rsg-page .wh-drift-col.good { background: linear-gradient(165deg, #F5FAF6 0%, #E7F1EA 100%); border-color: rgba(44,122,75,0.24); }
.rsg-page .wh-drift-col::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.rsg-page .wh-drift-col.bad::before { background: linear-gradient(90deg, var(--red), #E66A6A); }
.rsg-page .wh-drift-col.good::before { background: linear-gradient(90deg, var(--green-500), #6EE7B7); }
.rsg-page .wd-head { display: flex; align-items: flex-start; gap: 14px; padding: 26px 26px 16px; }
.rsg-page .wd-medal { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 8px 20px rgba(0,0,0,0.14); }
.rsg-page .wd-medal svg { width: 23px; height: 23px; color: #fff; }
.rsg-page .wh-drift-col.bad .wd-medal { background: linear-gradient(135deg, #E0414C, var(--red)); }
.rsg-page .wh-drift-col.good .wd-medal { background: linear-gradient(135deg, var(--green-500), var(--green-600)); }
.rsg-page .wh-drift-eye { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; margin-bottom: 7px; }
.rsg-page .wh-drift-col.bad .wh-drift-eye { color: var(--red); }
.rsg-page .wh-drift-col.good .wh-drift-eye { color: var(--green-700); }
.rsg-page .wh-drift-eye span { width: 8px; height: 8px; border-radius: 50%; }
.rsg-page .wh-drift-col.bad .wh-drift-eye span { background: var(--red); }
.rsg-page .wh-drift-col.good .wh-drift-eye span { background: var(--green-500); }
.rsg-page .wh-drift-col h3 { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--ink-900); margin: 0; line-height: 1.25; }
.rsg-page .wh-drift-list { list-style: none; margin: 0; padding: 2px 18px 8px; display: grid; gap: 3px; flex: 1; }
.rsg-page .wh-drift-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.5; color: var(--ink-900); font-weight: 500; padding: 9px 10px; border-radius: 10px; transition: background .2s; }
.rsg-page .wh-drift-col.bad .wh-drift-list li:hover { background: rgba(200,32,43,0.05); }
.rsg-page .wh-drift-col.good .wh-drift-list li:hover { background: rgba(44,122,75,0.06); }
.rsg-page .wh-drift-list .wd-mk { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0; }
.rsg-page .wh-drift-list .wd-mk svg { width: 13px; height: 13px; }
.rsg-page .wh-drift-col.bad .wd-mk { background: rgba(200,32,43,0.12); color: var(--red); }
.rsg-page .wh-drift-col.good .wd-mk { background: var(--green-50); color: var(--green-600); }
.rsg-page .wd-foot { display: flex; align-items: center; gap: 10px; margin-top: auto; padding: 15px 26px; border-top: 1px solid rgba(0,0,0,0.06); font-size: 12.5px; font-weight: 600; font-style: italic; }
.rsg-page .wd-foot svg { width: 16px; height: 16px; flex-shrink: 0; }
.rsg-page .wh-drift-col.bad .wd-foot { color: #B0303A; }
.rsg-page .wh-drift-col.good .wd-foot { color: var(--green-700); }
.rsg-page .wd-vs { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3; width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: 0 6px 18px rgba(0,0,0,0.14); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 12px; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.04em; }
@media (max-width: 820px) { .rsg-page .wh-drift { grid-template-columns: 1fr; gap: 18px; } .rsg-page .wd-vs { display: none; } }

/* monthly report layout (§10) */
.rsg-page .wh-report { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.rsg-page .wh-report .ai-dashboard { margin: 0; }
.rsg-page .wh-report-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.rsg-page .wh-report-list li { display: flex; align-items: flex-start; gap: 13px; }
.rsg-page .wh-report-list .wr-ic { width: 36px; height: 36px; border-radius: 10px; background: var(--green-50); color: var(--green-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rsg-page .wh-report-list .wr-ic svg { width: 18px; height: 18px; }
.rsg-page .wh-report-list strong { display: block; font-family: var(--font-display); font-size: 14.5px; color: var(--ink-900); margin-bottom: 3px; }
.rsg-page .wh-report-list p { font-size: 13px; line-height: 1.55; color: var(--ink-2); margin: 0; }
@media (max-width: 880px) { .rsg-page .wh-report { grid-template-columns: 1fr; gap: 28px; } }

/* ownership backup list (§11) */
.rsg-page .wh-own-backup { background: var(--paper-soft); border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; margin: 22px 0 0; }
.rsg-page .wh-own-backup .wob-h { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--ink-900); margin-bottom: 14px; }
.rsg-page .wh-own-backup .wob-h svg { width: 18px; height: 18px; color: var(--green-600); }
.rsg-page .wob-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.rsg-page .wob-grid li { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--ink-900); }
.rsg-page .wob-grid .wob-ck { width: 20px; height: 20px; border-radius: 6px; background: var(--green-50); color: var(--green-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rsg-page .wob-grid .wob-ck svg { width: 11px; height: 11px; }
@media (max-width: 760px) { .rsg-page .wob-grid { grid-template-columns: 1fr; } }

/* §9 — edit-requests redesign (common-request cards + full-width completed-edits log) */
.rsg-page .wh-edit { margin-top: 44px; }
.rsg-page .wh-edit-head { margin: 0 0 20px; }
.rsg-page .wh-edit-head h3 { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--ink-900); margin: 0 0 8px; }
.rsg-page .wh-edit-head p { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); margin: 0; max-width: 760px; }
.rsg-page .wh-req-grid { list-style: none; margin: 0 0 34px; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.rsg-page .wh-req-card { display: flex; align-items: center; gap: 13px; background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 15px 16px; box-shadow: var(--shadow-md); transition: border-color .2s, transform .2s, box-shadow .2s; }
.rsg-page .wh-req-card:hover { border-color: rgba(44,122,75,0.34); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.09); }
.rsg-page .wh-req-card .wrc-ic { width: 40px; height: 40px; border-radius: 11px; background: linear-gradient(135deg, var(--green-50), #fff); border: 1px solid rgba(44,122,75,0.16); color: var(--green-600); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rsg-page .wh-req-card .wrc-ic svg { width: 19px; height: 19px; }
.rsg-page .wh-req-card .wrc-tx { font-family: var(--font-display); font-weight: 700; font-size: 13.5px; line-height: 1.35; color: var(--ink-900); }
@media (max-width: 880px) { .rsg-page .wh-req-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .rsg-page .wh-req-grid { grid-template-columns: 1fr; } }
/* full-width completed-edits log table (native, on-brand) */
.rsg-page .wh-log { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,0.08), 0 0 0 1px var(--line); }
.rsg-page .wh-log-bar { display: flex; align-items: center; gap: 14px; padding: 13px 20px; background: #F8FAFC; border-bottom: 1px solid #E2E8F0; }
.rsg-page .wh-log-bar .wl-dots { display: flex; gap: 6px; flex-shrink: 0; }
.rsg-page .wh-log-bar .wl-dots span { width: 10px; height: 10px; border-radius: 50%; }
.rsg-page .wh-log-bar .wl-dots .d1 { background: #FF5F56; }
.rsg-page .wh-log-bar .wl-dots .d2 { background: #FFBD2E; }
.rsg-page .wh-log-bar .wl-dots .d3 { background: #27C93F; }
.rsg-page .wh-log-bar .wl-title { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #64748B; font-weight: 700; }
.rsg-page .wh-log-bar .wl-badge { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--green-700); background: var(--green-50); border: 1px solid rgba(44,122,75,0.2); border-radius: 999px; padding: 4px 11px; white-space: nowrap; }
.rsg-page .wh-log-bar .wl-badge svg { width: 12px; height: 12px; }
.rsg-page .wh-log-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.rsg-page .wh-log-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.rsg-page .wh-log-table thead th { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: #94A3B8; font-weight: 700; text-align: left; padding: 13px 18px; background: #FBFCFD; border-bottom: 1px solid #E8ECEA; }
.rsg-page .wh-log-table tbody td { padding: 14px 18px; border-bottom: 1px solid var(--line-2); vertical-align: top; }
.rsg-page .wh-log-table tbody tr:nth-child(even) { background: #FAFBFB; }
.rsg-page .wh-log-table tbody tr:hover { background: var(--green-50); }
.rsg-page .wh-log-table tbody tr:last-child td { border-bottom: 0; }
.rsg-page .wh-log-table .wl-num { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--green-600); width: 36px; }
.rsg-page .wh-log-table .wl-client { white-space: nowrap; }
.rsg-page .wh-log-table .wl-client .wlc-row { display: flex; align-items: center; gap: 9px; }
.rsg-page .wh-log-table .wl-client .wlc-av { width: 26px; height: 26px; border-radius: 7px; background: var(--green-50); border: 1px solid rgba(44,122,75,0.16); color: var(--green-700); font-family: var(--font-display); font-weight: 800; font-size: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rsg-page .wh-log-table .wl-client strong { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--ink-900); }
.rsg-page .wh-log-table .wl-task { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--ink-900); min-width: 160px; }
.rsg-page .wh-log-table .wl-details { font-size: 12.5px; line-height: 1.55; color: var(--ink-2); max-width: 430px; }
.rsg-page .wh-log-table .wl-details .wl-dash { color: #A8B0AD; }
.rsg-page .wh-log-table .wl-status { text-align: center; width: 48px; }
.rsg-page .wh-log-table .wl-check { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: var(--green-500); color: #fff; }
.rsg-page .wh-log-table .wl-check svg { width: 12px; height: 12px; }
.rsg-page .wh-log-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 20px; background: #F8FAFC; border-top: 1px solid #E8ECEA; }
.rsg-page .wh-log-foot .wlf-label { font-family: var(--font-display); font-size: 13px; font-weight: 800; color: var(--ink-900); }
.rsg-page .wh-log-foot .wlf-count { display: inline-flex; align-items: center; justify-content: center; min-width: 30px; height: 26px; padding: 0 9px; border-radius: 8px; background: var(--green-500); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 13px; }
@media (max-width: 600px) { .rsg-page .wh-log-bar { padding: 11px 14px; gap: 10px; } .rsg-page .wh-log-bar .wl-title { font-size: 8px; letter-spacing: 0.06em; } .rsg-page .wh-log-foot { padding: 12px 14px; } }

/* §10 — native monthly-report mockup + elevated explainer cards */
.rsg-page .wh-report-mock { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,0.08), 0 0 0 1px var(--line); }
.rsg-page .wh-rm-bar { display: flex; align-items: center; gap: 12px; padding: 12px 18px; background: #F8FAFC; border-bottom: 1px solid #E2E8F0; }
.rsg-page .wh-rm-bar .wl-dots { display: flex; gap: 6px; flex-shrink: 0; }
.rsg-page .wh-rm-bar .wl-dots span { width: 10px; height: 10px; border-radius: 50%; }
.rsg-page .wh-rm-bar .wl-dots .d1 { background: #FF5F56; }
.rsg-page .wh-rm-bar .wl-dots .d2 { background: #FFBD2E; }
.rsg-page .wh-rm-bar .wl-dots .d3 { background: #27C93F; }
.rsg-page .wh-rm-bar .wl-title { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #64748B; font-weight: 700; }
.rsg-page .wh-rm-body { padding: 24px 24px 20px; }
.rsg-page .wh-rm-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; padding-bottom: 14px; border-bottom: 2px solid var(--green-500); margin-bottom: 18px; }
.rsg-page .wh-rm-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--ink-900); margin: 0; line-height: 1.1; }
.rsg-page .wh-rm-sub { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--ink-2); letter-spacing: 0.03em; margin-top: 4px; }
.rsg-page .wh-rm-month { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--green-700); background: var(--green-50); border: 1px solid rgba(44,122,75,0.2); border-radius: 999px; padding: 5px 12px; white-space: nowrap; flex-shrink: 0; }
.rsg-page .wh-rm-kpis { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 20px; }
.rsg-page .wh-rm-kpi { text-align: center; background: var(--paper-soft); border: 1px solid var(--line); border-radius: 12px; padding: 14px 6px; }
.rsg-page .wh-rm-kpi .k-num { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--green-600); line-height: 1; }
.rsg-page .wh-rm-kpi .k-lab { display: block; font-size: 9.5px; color: var(--ink-2); font-weight: 600; margin-top: 6px; line-height: 1.25; }
.rsg-page .wh-rm-section { display: flex; align-items: center; gap: 10px; background: linear-gradient(135deg,#000 0%,#4A4A4A 100%); border-radius: 9px; padding: 11px 14px; }
.rsg-page .wh-rm-sec-num { font-family: var(--font-mono); font-size: 11px; font-weight: 800; color: var(--green-500); }
.rsg-page .wh-rm-sec-tx { font-family: var(--font-display); font-size: 12.5px; font-weight: 700; color: #fff; letter-spacing: 0.02em; }
.rsg-page .wh-rm-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.rsg-page .wh-rm-table { width: 100%; min-width: 440px; border-collapse: collapse; }
.rsg-page .wh-rm-table thead th { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: #94A3B8; font-weight: 700; text-align: left; padding: 11px 12px; border-bottom: 1px solid #E8ECEA; }
.rsg-page .wh-rm-table thead th.rm-c { text-align: center; width: 56px; }
.rsg-page .wh-rm-table tbody td { padding: 12px; border-bottom: 1px solid var(--line-2); vertical-align: middle; }
.rsg-page .wh-rm-table tbody tr:last-child td { border-bottom: 0; }
.rsg-page .wh-rm-table .rm-client strong { display: block; font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--ink-900); }
.rsg-page .wh-rm-table .rm-client .rm-dom { display: block; font-family: var(--font-mono); font-size: 10.5px; color: var(--green-600); margin-top: 2px; }
.rsg-page .wh-rm-table .rm-loc { font-size: 12px; color: var(--ink-2); line-height: 1.4; }
.rsg-page .wh-rm-table .rm-count { text-align: center; }
.rsg-page .wh-rm-table .rm-pill { display: inline-flex; align-items: center; justify-content: center; min-width: 26px; height: 24px; padding: 0 8px; border-radius: 7px; background: var(--green-50); border: 1px solid rgba(44,122,75,0.18); color: var(--green-700); font-family: var(--font-display); font-weight: 800; font-size: 12.5px; }
.rsg-page .wh-rm-foot { padding: 12px 12px 2px; }
.rsg-page .wh-rm-foot span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: #94A3B8; font-weight: 700; }
@media (max-width: 560px) { .rsg-page .wh-rm-kpis { grid-template-columns: repeat(3, 1fr); } .rsg-page .wh-rm-body { padding: 18px 16px 16px; } }
/* elevate the explainer list into cards; flex column so cards fill the mockup's height */
.rsg-page .wh-report-list { gap: 12px; display: flex; flex-direction: column; height: 100%; }
.rsg-page .wh-report-list li { flex: 1 1 auto; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 15px 16px; box-shadow: var(--shadow-md); transition: border-color .2s, transform .2s, box-shadow .2s; }
.rsg-page .wh-report-list li:hover { border-color: rgba(44,122,75,0.34); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.08); }
.rsg-page .wh-report-list .wr-ic { width: 40px; height: 40px; border-radius: 11px; background: linear-gradient(135deg, var(--green-50), #fff); border: 1px solid rgba(44,122,75,0.16); }

/* §11 — "Two Clean Options" dark callout redesign (2-col + portability hub + options band + footer) */
.rsg-page .lo-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 34px; align-items: center; margin-bottom: 24px; position: relative; z-index: 2; }
.rsg-page .lo-left h3 { color: #fff; font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; margin: 0 0 12px; line-height: 1.2; }
.rsg-page .lo-left > p { color: rgba(255,255,255,0.74); font-size: 14.5px; line-height: 1.65; margin: 0 0 20px; }
.rsg-page .lo-checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.rsg-page .lo-checks li { display: flex; align-items: flex-start; gap: 12px; }
.rsg-page .lo-checks .lo-ck { width: 26px; height: 26px; border-radius: 8px; background: rgba(32,157,80,0.18); border: 1px solid rgba(32,157,80,0.34); color: var(--green-500); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.rsg-page .lo-checks .lo-ck svg { width: 14px; height: 14px; }
.rsg-page .lo-checks strong { display: block; font-family: var(--font-display); font-size: 14.5px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.rsg-page .lo-checks .lo-cd { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.62); }
.rsg-page .lo-diagram { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.10); border-radius: 16px; padding: 18px 18px 20px; }
.rsg-page .lo-dg-title { display: block; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 700; margin-bottom: 4px; }
.rsg-page .lo-dg-stage { position: relative; width: 100%; height: 240px; }
.rsg-page .lo-dg-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.rsg-page .lo-node { position: absolute; transform: translate(-50%, -50%); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; font-family: var(--font-display); font-weight: 700; z-index: 2; }
.rsg-page .lo-node.lo-corner { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.92); border-radius: 999px; padding: 7px 13px; font-size: 11.5px; box-shadow: 0 6px 16px rgba(0,0,0,0.25); }
.rsg-page .lo-node-center { flex-direction: column; gap: 5px; left: 50%; top: 50%; background: var(--green-500); color: #fff; border-radius: 50%; width: 94px; height: 94px; justify-content: center; box-shadow: 0 0 0 7px rgba(32,157,80,0.16), 0 14px 30px rgba(32,157,80,0.45); font-size: 12px; text-align: center; line-height: 1.15; }
.rsg-page .lo-node-center svg { width: 22px; height: 22px; }
.rsg-page .lo-n1 { left: 17%; top: 22%; }
.rsg-page .lo-n2 { left: 83%; top: 22%; }
.rsg-page .lo-n3 { left: 17%; top: 78%; }
.rsg-page .lo-n4 { left: 83%; top: 78%; }
.rsg-page .lo-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 22px 24px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); border-radius: 14px; margin-bottom: 22px; position: relative; z-index: 2; }
.rsg-page .lo-opt { display: flex; flex-direction: column; gap: 7px; }
.rsg-page .lo-opt + .lo-opt { border-left: 1px solid rgba(255,255,255,0.10); padding-left: 16px; }
.rsg-page .lo-opt .lo-num { font-family: var(--font-display); font-size: clamp(24px, 2.8vw, 32px); font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1; }
.rsg-page .lo-opt:first-child .lo-num { color: var(--green-500); }
.rsg-page .lo-opt .lo-num small { font-size: 0.5em; font-weight: 700; }
.rsg-page .lo-opt .lo-lbl { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 700; line-height: 1.4; }
.rsg-page .lo-foot-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.10); position: relative; z-index: 2; }
.rsg-page .lo-foot-row p { margin: 0; font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.68); max-width: 560px; }
.rsg-page .lo-foot-row p strong { color: #fff; font-weight: 700; }
@media (max-width: 820px) {
  .rsg-page .lo-grid { grid-template-columns: 1fr; gap: 24px; }
  .rsg-page .lo-options { grid-template-columns: 1fr; gap: 0; }
  .rsg-page .lo-opt + .lo-opt { border-left: 0; border-top: 1px solid rgba(255,255,255,0.10); padding-left: 0; padding-top: 14px; margin-top: 14px; }
  .rsg-page .lo-foot-row { flex-direction: column; align-items: stretch; }
  .rsg-page .lo-foot-row .hb-cta-btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .rsg-page .lo-dg-stage { height: 224px; }
  .rsg-page .lo-node.lo-corner { font-size: 10px; padding: 6px 10px; }
  .rsg-page .lo-n1, .rsg-page .lo-n3 { left: 21%; }
  .rsg-page .lo-n2, .rsg-page .lo-n4 { left: 79%; }
}
