/* ScaffSkills lift stepper: module content delivered one lift at a time.
   Generic layer, configured per page via window.SCAFF_LIFTS. */
.lift-hud { position: sticky; top: 0; z-index: 900; background: var(--ink, #0B1929); border-bottom: 1px solid rgba(184,205,217,0.25); padding: 12px 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.lift-hud-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 18px; letter-spacing: 0.5px; text-transform: uppercase; color: #fff; white-space: nowrap; }
.lift-hud-label span { color: var(--accent, #2A7DE1); }
.lift-storeys { display: flex; gap: 5px; flex: 1; min-width: 160px; }
.lift-storey { height: 8px; flex: 1; border-radius: 3px; background: rgba(184,205,217,0.2); }
.lift-storey.done { background: var(--accent, #2A7DE1); }
.lift-storey.now { background: var(--accent, #2A7DE1); opacity: 0.55; animation: liftpulse 1.6s infinite; }
@keyframes liftpulse { 50% { opacity: 1; } }
.lift-hud-time { font: 500 12px 'Inter', sans-serif; color: #6B90AE; white-space: nowrap; }
.lift { display: none; }
.lift.active { display: block; animation: liftin 0.35s ease; }
@keyframes liftin { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.lift-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin: 36px 0 30px; padding-top: 20px; border-top: 1px solid rgba(184,205,217,0.35); flex-wrap: wrap; }
.lift-btn { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 17px; text-transform: uppercase; letter-spacing: 0.5px; padding: 13px 26px; border-radius: 6px; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.lift-btn-next { background: var(--accent, #2A7DE1); color: #fff; }
.lift-btn-next:hover { background: var(--accent-dk, #1C5CB5); }
.lift-btn-next:disabled { background: #3E6185; cursor: not-allowed; opacity: 0.6; }
.lift-btn-back { background: transparent; color: #6B90AE; border: 1px solid rgba(107,144,174,0.4); }
.rule-card { margin: 30px 0 6px; background: linear-gradient(135deg, #122236, #1A3A5C); border-left: 4px solid var(--accent, #2A7DE1); border-radius: 8px; padding: 18px 22px; }
.rule-card .rc-kicker { font: 700 10px 'Inter', sans-serif; letter-spacing: 2px; text-transform: uppercase; color: var(--accent, #2A7DE1); margin-bottom: 6px; }
.rule-card .rc-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 21px; line-height: 1.25; color: #fff; }
.micro-check { margin: 28px 0 4px; background: rgba(42,125,225,0.07); border: 1px solid rgba(42,125,225,0.35); border-radius: 8px; padding: 20px 22px; }
.micro-check .mc-kicker { font: 700 10px 'Inter', sans-serif; letter-spacing: 2px; text-transform: uppercase; color: var(--accent, #2A7DE1); margin-bottom: 8px; }
.micro-check .mc-q { font: 600 15px/1.5 'Inter', sans-serif; margin-bottom: 12px; }
.micro-check label { display: block; font: 500 14px 'Inter', sans-serif; padding: 9px 12px; border: 1px solid rgba(107,144,174,0.4); border-radius: 6px; margin-bottom: 8px; cursor: pointer; }
.micro-check label:hover { border-color: var(--accent, #2A7DE1); }
.micro-check .mc-fb { display: none; font: 500 13.5px/1.55 'Inter', sans-serif; margin-top: 10px; padding: 12px 14px; border-radius: 6px; }
.micro-check .mc-fb.ok { display: block; background: rgba(42,125,225,0.15); }
.micro-check .mc-fb.no { display: block; border: 1px solid rgba(107,144,174,0.5); }
.lift-gate-note { font: 500 12px 'Inter', sans-serif; color: #6B90AE; margin-top: 8px; flex-basis: 100%; }
