/* ============================================================
   IALF CPI™ — The Platform (Calendly-pattern switcher)
   ------------------------------------------------------------
   Horizontal icon tabs, connector stem down to one unified card,
   left text + live animated product screen on the right.
   All 8 views maintain exact pixel dimensions (zero layout shift)
   and feature eye-catching live CSS/SVG animations.
   ============================================================ */

@layer sections {

.pf { display: grid; gap: 0; justify-items: center; width: 100%; }

/* ---------------- the tab row ---------------- */
.pf__rail {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
  position: relative; z-index: 2;
  max-width: 100%;
}
.pf__tab {
  position: relative;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border: 1px solid var(--color-cream-border);
  border-radius: 16px;
  background: var(--surface-paper);
  color: var(--color-graphite);
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-spring),
              background var(--dur-base) linear,
              border-color var(--dur-base) linear,
              box-shadow var(--dur-base) linear;
}
.pf__tab svg { width: 23px; height: 23px; }
.pf__tab__i { display: grid; place-items: center; }
@media (hover:hover) and (pointer:fine) {
  .pf__tab:hover { transform: translateY(-2px); border-color: var(--color-electric-cobalt); color: var(--color-ink-navy); }
}
.pf__tab[aria-selected="true"] {
  background: var(--tint-lavender);
  border-color: rgba(37,69,255,.3);
  color: var(--color-ink-navy);
  box-shadow: 0 10px 26px rgba(37,69,255,.24), inset 0 0 0 1.5px rgba(37,69,255,.3);
  transform: translateY(-2px);
}
/* the connector stem down to the card */
.pf__tab[aria-selected="true"]::after {
  content: "";
  position: absolute; left: 50%; bottom: -27px;
  width: 2px; height: 27px; margin-left: -1px;
  background: var(--color-electric-cobalt);
  opacity: .75;
}
.pf__tab[aria-selected="true"]::before {
  content: "";
  position: absolute; left: 50%; bottom: -31px; margin-left: -4px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-electric-cobalt);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-electric-cobalt) 25%, transparent);
}
/* thin auto-advance progress under the icon */
.pf__bar {
  position: absolute; left: 10px; right: 10px; bottom: 7px; height: 2.5px;
  border-radius: 2px; background: color-mix(in srgb, var(--color-ink-navy) 12%, transparent);
  opacity: 0;
}
.pf__tab[aria-selected="true"] .pf__bar { opacity: 1; }
.pf__bar i { display: block; height: 100%; border-radius: 2px; background: linear-gradient(90deg, #3054ff, #06b6d4);
  transform-origin: left; transform: scaleX(0); }
.pf__tab[aria-selected="true"] .pf__bar i { animation: pf-fill var(--pf-dwell, 3.2s) linear forwards; }
@keyframes pf-fill { to { transform: scaleX(1); } }
.pf__n, .pf__label { display: none; }

/* ---------------- the card ---------------- */
.pf__card {
  position: relative; z-index: 1;
  width: 100%;
  background: var(--surface-paper);
  border: 1px solid var(--color-cream-border);
  border-radius: 26px;
  box-shadow: var(--shadow-plate);
  padding: clamp(24px, 3.5vw, 42px);
  overflow: hidden;
}
.pf__views { position: relative; width: 100%; }
.pf__view { display: none; }
.pf__view[data-active] {
  display: grid; gap: clamp(24px, 4vw, 56px); align-items: stretch;
}

@media (min-width: 900px) {
  .pf__view[data-active] {
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    min-height: 410px;
  }
  .pf__left {
    min-height: 410px;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .scr {
    height: 410px;
    display: flex; flex-direction: column;
  }
}

/* left column */
.pf__left { display: grid; gap: 14px; align-content: start; min-width: 0; }
.pf__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-sans-tight); font-size: 13px; font-weight: 700;
  letter-spacing: .02em; color: var(--color-ink-navy);
}
.pf__eyebrow span {
  width: 26px; height: 26px; border-radius: 8px; flex: none;
  display: grid; place-items: center;
  background: var(--tint-lavender); color: var(--color-electric-cobalt);
}
.pf__eyebrow svg { width: 15px; height: 15px; }
.pf__head {
  font-family: var(--font-sans-tight);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 600;
  letter-spacing: -.035em; line-height: 1.1;
  color: var(--color-charcoal);
}
.pf__head em { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.pf__desc { font-size: var(--text-body); line-height: 1.6; color: var(--color-graphite); max-width: 44ch; }
.pf__more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--text-body-sm); font-weight: var(--fw-medium);
  color: var(--color-ink-navy);
  border-bottom: 1.5px solid var(--color-ink-navy);
  padding-bottom: 3px; width: fit-content;
}
.pf__more svg { width: 14px; height: 14px; transition: transform var(--dur-fast) var(--ease-editorial); }
@media (hover:hover) and (pointer:fine) { .pf__more:hover svg { transform: translateX(4px); } }

/* Executive left-column balance card: eliminates the blank space below pf__more */
.pf__meta-status {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37,69,255,.05) 0%, rgba(240,244,255,.7) 100%);
  border: 1px solid rgba(37,69,255,.14);
  display: grid;
  gap: 8px;
}
.pf__meta-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-sans-tight);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-ink-navy);
}
.pf__meta-status-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  display: inline-block;
  animation: pulse-beacon 2s infinite;
}
.pf__meta-status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pf__meta-item {
  display: grid;
  gap: 2px;
}
.pf__meta-k {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-stone);
}
.pf__meta-v {
  font-family: var(--font-sans-tight);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pf__meta-v--live {
  color: var(--color-electric-cobalt);
  font-weight: 700;
}

/* right column: the animated product screen, entering on switch */
.pf__view[data-active] .scr {
  animation: scr-in 520ms var(--ease-editorial) both;
}
@keyframes scr-in { from { opacity: 0; transform: translateY(12px) scale(.99); } to { opacity: 1; transform: none; } }

/* ============================================================
   SCREEN — uniform pixel product frame
   ============================================================ */
.scr {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(165deg, #eef1fb 0%, #e3e8fb 100%);
  padding: 16px;
  box-shadow: 0 20px 44px rgba(12,23,84,.14);
}
.scr__win {
  background: var(--surface-paper);
  border-radius: 13px;
  box-shadow: 0 6px 18px rgba(12,23,84,.08);
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
}
.scr__bar {
  flex: none;
  display: flex; align-items: center; gap: 8px;
  padding: 11px 15px;
  border-bottom: 1px solid var(--color-cream-border);
  background: rgba(255,255,255,.9);
}
.scr__bar .dots i { background: var(--color-smoke); }
.scr__bar .dots i:first-child { background: var(--color-electric-cobalt); }
.scr__title { font-family: var(--font-sans-tight); font-size: 12.5px; font-weight: 600; letter-spacing: -.01em; color: var(--color-graphite); }
.scr__tag { margin-left: auto; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--color-stone); }
.scr__body {
  flex: 1;
  padding: 18px 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}

/* --- capability scan (Stage 01 Identify) --- */
.cap-list { display: grid; gap: 10px; }
.cap { display: grid; grid-template-columns: 1fr auto; gap: 5px 10px; align-items: center; }
.cap__k { font-size: 12.5px; font-weight: 500; color: var(--color-charcoal); }
.cap__v { font-size: 10.5px; font-weight: 600; color: var(--color-stone); }
.cap__track { grid-column: 1 / -1; height: 6px; border-radius: 3px; background: var(--surface-canvas); overflow: hidden; }
.cap__fill { display: block; height: 100%; border-radius: 3px; background: var(--color-electric-cobalt);
  transform-origin: left; transform: scaleX(0); animation: cap-grow 900ms var(--ease-editorial) forwards;
  animation-delay: calc(250ms + var(--j,0) * 120ms); }
.cap__fill--low { background: #d0a47d; }
@keyframes cap-grow { to { transform: scaleX(var(--fill, .5)); } }
.cap__flag {
  font-size: 9.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--color-electric-cobalt); opacity: 0; animation: cap-flag 400ms var(--ease-spring) forwards;
  animation-delay: calc(750ms + var(--j,0) * 120ms);
}
@keyframes cap-flag { from { opacity: 0; transform: translateX(-4px); } to { opacity: 1; transform: none; } }

/* --- Executive Learning Architecture (Stage 02 Acquire) --- */
.exec-plan { display: grid; gap: 8px; }
.exec-plan__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 6px; border-bottom: 1px solid var(--color-cream-border);
}
.exec-plan__title {
  font-family: var(--font-sans-tight); font-size: 12.5px; font-weight: 700;
  color: var(--color-charcoal); display: flex; align-items: center; gap: 6px;
}
.exec-plan__tag {
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--color-electric-cobalt); background: var(--tint-lavender);
  padding: 2px 7px; border-radius: 6px;
}
.exec-plan__tracks { display: grid; gap: 6px; }
.exec-track {
  display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center;
  padding: 7px 11px; border-radius: 9px;
  background: var(--surface-canvas); border: 1px solid var(--color-cream-border);
  transition: border-color 0.2s, background 0.2s;
  opacity: 0; animation: cap-flag 400ms var(--ease-editorial) forwards;
  animation-delay: calc(150ms + var(--j,0) * 90ms);
}
.exec-track:hover {
  border-color: rgba(37,69,255,.3); background: rgba(37,69,255,.03);
}
.exec-track__date {
  font-family: var(--font-sans-tight); font-size: 10px; font-weight: 700;
  color: var(--color-electric-cobalt); background: #fff; padding: 2px 6px;
  border-radius: 5px; border: 1px solid rgba(37,69,255,.15);
}
.exec-track__info { display: grid; gap: 1px; min-width: 0; }
.exec-track__name {
  font-size: 11.5px; font-weight: 600; color: var(--color-charcoal); line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.exec-track__meta {
  font-size: 9.5px; color: var(--color-stone); display: flex; gap: 6px; align-items: center;
}
.exec-track__badge {
  font-family: var(--font-sans-tight); font-size: 10px; font-weight: 700;
  color: var(--color-ink-navy); white-space: nowrap;
}

/* Fallback / original calendar classes if used */
.cal { display: grid; gap: 9px; }
.cal__head { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-sans-tight); font-size: 13px; font-weight: 600; color: var(--color-charcoal); }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal__d { aspect-ratio: 1; display: grid; place-items: center; font-size: 11px; color: var(--color-graphite); border-radius: 8px; }
.cal__d--muted { color: var(--color-smoke); }
.cal__d--dot { position: relative; background: var(--surface-canvas); font-weight: 600; color: var(--color-ink-navy); }
.cal__d--dot::after { content: ""; position: absolute; bottom: 3px; left: 50%; width: 4px; height: 4px; margin-left: -2px; border-radius: 50%; background: var(--color-electric-cobalt); opacity: 0; animation: cal-pop 360ms var(--ease-spring) forwards; animation-delay: calc(450ms + var(--j,0) * 180ms); }
.cal__d--on { background: var(--color-electric-cobalt); color: #fff; font-weight: 700; box-shadow: 0 2px 8px rgba(37,69,255,.35); }
@keyframes cal-pop { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
.cal__foot { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; border-top: 1px solid var(--color-cream-border); font-size: 11.5px; color: var(--color-graphite); }
.cal__hrs { font-family: var(--font-sans-tight); font-weight: 700; color: var(--color-electric-cobalt); }

/* --- connect capability to responsibility (Stage 03 Link) --- */
.lnk { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: center; }
.lnk__card { padding: 13px; border-radius: 12px; background: var(--surface-canvas); border: 1px solid var(--color-cream-border); text-align: center; }
.lnk__card--to { border-color: var(--color-electric-cobalt); background: rgba(37, 69, 255, .04); }
.lnk__k { font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--color-stone); }
.lnk__v { font-family: var(--font-sans-tight); font-size: 12.5px; font-weight: 600; letter-spacing: -.01em; color: var(--color-ink-navy); margin-top: 4px; line-height: 1.25; }
.lnk__wire { width: 100%; height: 24px; overflow: visible; }
.lnk__wire path { fill: none; stroke: var(--color-electric-cobalt); stroke-width: 2.2; stroke-linecap: round; stroke-dasharray: 46; stroke-dashoffset: 46; animation: lnk-draw 700ms var(--ease-editorial) 350ms forwards; }
.lnk__wire circle { fill: var(--color-electric-cobalt); opacity: 0; animation: cap-flag 300ms 950ms forwards; }
@keyframes lnk-draw { to { stroke-dashoffset: 0; } }

/* --- readiness checklist & gauge (Stage 04 Facilitate) --- */
.rdy { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; }
.rdy__list { display: grid; gap: 8px; }
.rdy__item { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--color-charcoal); }
.rdy__item b { width: 18px; height: 18px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: var(--color-electric-cobalt); color: #fff; font-size: 10px;
  transform: scale(0); animation: cap-flag 360ms var(--ease-spring) forwards; animation-delay: calc(350ms + var(--j,0) * 160ms); }
.rdy__item[data-open] b { background: transparent; border: 1.5px dashed var(--color-smoke); animation: none; transform: none; }
.rdy__item[data-open] { color: var(--color-stone); }
.rdy__gauge { position: relative; width: 78px; height: 78px; flex: none; }
.rdy__gauge svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.rdy__gauge .t { fill: none; stroke: var(--surface-canvas); stroke-width: 8; }
.rdy__gauge .f { fill: none; stroke: var(--color-electric-cobalt); stroke-width: 8; stroke-linecap: round;
  stroke-dasharray: 201; stroke-dashoffset: 201; animation: rdy-fill 1100ms var(--ease-editorial) 450ms forwards; }
@keyframes rdy-fill { to { stroke-dashoffset: 36; } }
.rdy__num { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-sans-tight); font-size: 16px; font-weight: 700; color: var(--color-ink-navy); }

/* --- Enterprise Workflow Board (Stage 05 Implement) --- */
.wf-board { display: grid; gap: 7px; }
.wf-board__progress {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; font-weight: 600; color: var(--color-graphite);
  padding-bottom: 4px;
}
.wf-board__bar {
  height: 5px; border-radius: 3px; background: var(--surface-canvas);
  overflow: hidden; margin-bottom: 2px;
}
.wf-board__fill {
  height: 100%; border-radius: 3px; background: linear-gradient(90deg, #3054ff, #10b981);
  width: 83%; animation: progress-slide 1s ease-out;
}
.wf-row {
  display: grid; grid-template-columns: 46px 1fr auto; gap: 10px; align-items: center;
  padding: 7px 11px; border-radius: 9px; background: var(--surface-canvas);
  border: 1px solid var(--color-cream-border);
  transition: transform 0.2s, border-color 0.2s;
  opacity: 0; animation: cap-flag 400ms var(--ease-editorial) forwards;
  animation-delay: calc(150ms + var(--j,0) * 80ms);
}
.wf-row:hover { transform: translateX(3px); border-color: rgba(37,69,255,.25); }
.wf-row__wk {
  font-family: var(--font-sans-tight); font-size: 10.5px; font-weight: 700;
  color: var(--color-electric-cobalt); background: #fff; padding: 2px 6px;
  border-radius: 5px; text-align: center; border: 1px solid rgba(37,69,255,.12);
}
.wf-row__text { font-size: 11.5px; color: var(--color-charcoal); line-height: 1.25; font-weight: 500; }
.wf-row__status {
  font-family: var(--font-sans-tight); font-size: 9.5px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: 2px 7px;
  border-radius: 5px; white-space: nowrap;
}
.wf-row__status--verified { background: rgba(16, 185, 129, 0.12); color: #059669; border: 1px solid rgba(16, 185, 129, 0.25); }
.wf-row__status--active { background: rgba(37, 99, 235, 0.12); color: #2563eb; border: 1px solid rgba(37, 99, 235, 0.25); }
.wf-row__status--scheduled { background: rgba(156, 163, 175, 0.15); color: #4b5563; border: 1px solid rgba(156, 163, 175, 0.25); }

/* Fallback timeline */
.tl { display: grid; gap: 7px; }
.tl__row { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center;
  padding: 8px 12px; border-radius: 10px; background: var(--surface-canvas);
  opacity: 0; animation: cap-flag 400ms var(--ease-editorial) forwards; animation-delay: calc(250ms + var(--j,0) * 120ms); }
.tl__t { font-family: var(--font-sans-tight); font-size: 10.5px; font-weight: 700; color: var(--color-electric-cobalt); }
.tl__x { font-size: 12px; color: var(--color-charcoal); line-height: 1.25; }

/* --- results dashboard (Stage 06 Impact) --- */
.res { display: grid; gap: 10px; }
.res__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.res__now { font-family: var(--font-sans-tight); font-variant-numeric: tabular-nums; font-size: 2.15rem; font-weight: 700; letter-spacing: -.05em; line-height: 1; color: var(--color-electric-cobalt); }
.res__now small { font-size: .46em; font-weight: 600; color: var(--color-stone); }
.res__was { font-size: 11px; color: var(--color-stone); }
.res__chart { width: 100%; height: 58px; display: block; }
.res__chart .a { fill: url(#pfg); opacity: 0; animation: cap-flag 600ms 850ms forwards; }
.res__chart .l { fill: none; stroke: var(--color-electric-cobalt); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 340; stroke-dashoffset: 340; animation: lnk-draw 1100ms var(--ease-editorial) 250ms forwards; }
.res__chart .d { fill: #fff; stroke: var(--color-electric-cobalt); stroke-width: 2.5; opacity: 0; animation: cap-flag 300ms 1150ms forwards; }
.res__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.res__chip { padding: 5px 9px; border-radius: var(--radius-buttons); font-size: 11px; font-weight: 600;
  background: var(--surface-canvas); border: 1px solid var(--color-cream-border); color: var(--color-graphite); }
.res__chip--up { background: var(--tint-lavender); border-color: transparent; color: var(--color-ink-navy); }

/* --- reflection & cycle advancement (Stage 07 Learn again) --- */
.rfl { display: grid; gap: 9px; }
.rfl__card { padding: 12px 14px; border-radius: 12px; background: var(--surface-canvas); border: 1px solid var(--color-cream-border); }
.rfl__card--goal { border-color: var(--color-electric-cobalt); background: var(--tint-lavender); }
.rfl__k { font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--color-stone); }
.rfl__v { font-family: var(--font-sans-tight); font-size: 12.5px; font-weight: 600; letter-spacing: -.01em; color: var(--color-ink-navy); margin-top: 3px; }
.rfl__arrow { justify-self: center; color: var(--color-electric-cobalt); }
.rfl__arrow svg { width: 22px; height: 22px; animation: loop-turn 8s linear infinite; }

/* --- The Complete CPI Continuous Ecosystem (Stage 08) --- */
.eco { display: grid; gap: 10px; }
.eco__strip {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; border-radius: 10px;
  background: var(--surface-canvas); border: 1px solid var(--color-cream-border);
}
.eco__badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans-tight); font-size: 11px; font-weight: 700;
  color: var(--color-electric-cobalt);
}
.eco__beacon {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-electric-cobalt);
  box-shadow: 0 0 0 3px rgba(37,69,255,.25);
  animation: eco-pulse 2s ease-in-out infinite;
}
@keyframes eco-pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 3px rgba(37,69,255,.25); }
  50% { transform: scale(1.2); opacity: .8; box-shadow: 0 0 0 6px rgba(37,69,255,.1); }
}
.eco__flow { display: grid; gap: 7px; position: relative; }
.eco__step {
  display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center;
  padding: 9px 12px; border-radius: 10px;
  background: var(--surface-paper); border: 1px solid var(--color-cream-border);
  box-shadow: 0 2px 6px rgba(12,23,84,.03);
}
.eco__step--cpi {
  border-color: var(--color-electric-cobalt);
  background: var(--tint-lavender);
}
.eco__step-n {
  font-family: var(--font-sans-tight); font-size: 11px; font-weight: 700;
  padding: 3px 7px; border-radius: 6px;
  background: var(--surface-canvas); color: var(--color-ink-navy);
}
.eco__step--cpi .eco__step-n { background: var(--color-electric-cobalt); color: #fff; }
.eco__step-t { font-size: 12px; font-weight: 600; color: var(--color-charcoal); line-height: 1.2; }
.eco__step-t span { display: block; font-size: 10.5px; font-weight: 400; color: var(--color-graphite); margin-top: 2px; }
.eco__step-v { font-family: var(--font-sans-tight); font-size: 10.5px; font-weight: 700; color: var(--color-electric-cobalt); }

/* ---------------- responsive ---------------- */
@media (max-width: 899px) {
  .pf__view[data-active] { grid-template-columns: 1fr; }
  .pf__rail { gap: 8px; }
  .pf__tab { width: 50px; height: 50px; }
  .pf__tab svg { width: 20px; height: 20px; }
  .scr { min-height: 380px; }
}

/* ---------------- motion opt-out ---------------- */
html.motion-off .pf__bar i,
html.motion-off .pf__view[data-active] .scr,
html.motion-off .cap__fill, html.motion-off .cap__flag,
html.motion-off .cal__d--dot::after,
html.motion-off .lnk__wire path, html.motion-off .lnk__wire circle,
html.motion-off .rdy__item b, html.motion-off .rdy__gauge .f,
html.motion-off .tl__row,
html.motion-off .res__chart .a, html.motion-off .res__chart .l, html.motion-off .res__chart .d,
html.motion-off .rfl__arrow svg, html.motion-off .eco__beacon { animation: none !important; }
html.motion-off .cap__fill { transform: scaleX(var(--fill, .5)); }
html.motion-off .cap__flag, html.motion-off .rdy__item b { opacity: 1; transform: none; }
html.motion-off .cal__d--dot::after { opacity: 1; }
html.motion-off .lnk__wire path { stroke-dashoffset: 0; }
html.motion-off .lnk__wire circle { opacity: 1; }
html.motion-off .rdy__gauge .f { stroke-dashoffset: 36; }
html.motion-off .tl__row { opacity: 1; }
html.motion-off .res__chart .a, html.motion-off .res__chart .d { opacity: 1; }
html.motion-off .res__chart .l { stroke-dashoffset: 0; }
html.motion-off .pf__view[data-active] .scr { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html:not(.motion-forced) .pf__bar i,
  html:not(.motion-forced) .pf__view[data-active] .scr,
  html:not(.motion-forced) .cap__fill, html:not(.motion-forced) .cap__flag,
  html:not(.motion-forced) .cal__d--dot::after,
  html:not(.motion-forced) .lnk__wire path, html:not(.motion-forced) .lnk__wire circle,
  html:not(.motion-forced) .rdy__item b, html:not(.motion-forced) .rdy__gauge .f,
  html:not(.motion-forced) .tl__row,
  html:not(.motion-forced) .res__chart .a, html:not(.motion-forced) .res__chart .l, html:not(.motion-forced) .res__chart .d,
  html:not(.motion-forced) .rfl__arrow svg, html:not(.motion-forced) .eco__beacon { animation: none !important; }
  html:not(.motion-forced) .cap__fill { transform: scaleX(var(--fill, .5)); }
  html:not(.motion-forced) .cap__flag, html:not(.motion-forced) .rdy__item b { opacity: 1; transform: none; }
  html:not(.motion-forced) .cal__d--dot::after { opacity: 1; }
  html:not(.motion-forced) .lnk__wire path { stroke-dashoffset: 0; }
  html:not(.motion-forced) .lnk__wire circle { opacity: 1; }
  html:not(.motion-forced) .rdy__gauge .f { stroke-dashoffset: 36; }
  html:not(.motion-forced) .tl__row { opacity: 1; }
  html:not(.motion-forced) .res__chart .a, html:not(.motion-forced) .res__chart .d { opacity: 1; }
  html:not(.motion-forced) .res__chart .l { stroke-dashoffset: 0; }
  html:not(.motion-forced) .pf__view[data-active] .scr { opacity: 1; transform: none; }
}

}
