@font-face {
  font-family: "AccessProofDyslexic";
  src: url("../fonts/OpenDyslexic-Regular.woff2") format("woff2"),
       url("../fonts/OpenDyslexic-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* UpCode.ONE theme tokens (Avada --awb-*) with fallbacks */
:root {
  --ap-accent: var(--awb-color6, #1e4f8a);
  --ap-accent-ink: var(--awb-color1, #f5f7fb);
  --ap-ink: var(--awb-color5, #0d1023);
  --ap-navy: var(--awb-color8, #1a2b6d);
  --ap-surface: var(--awb-color1, #f5f7fb);
  --ap-surface-alt: var(--awb-color2, #cad8f0);
  --ap-cta-start: var(--awb-color7, #f28c28);
  --ap-cta-end: #f03488;
  --ap-muted: #646970;
  --ap-line: #e5e7eb;
  --ap-teal: var(--ap-accent);
}
.accessproof-panel {
  --ap-teal: var(--ap-accent);
  --ap-navy: var(--awb-color6, #1e4f8a);
  --ap-teal-soft: color-mix(in srgb, var(--ap-accent) 12%, #fff);
  --ap-ink: var(--awb-color5, #0d1023);
  --ap-muted: #646970;
  --ap-line: #e5e7eb;
}
.accessproof-root .screen-reader-text,
.accessproof-panel .screen-reader-text,
.accessproof-trigger .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Trigger base */
.accessproof-trigger {
  position: fixed;
  z-index: 100002;
  border: var(--ap-trigger-border, 0);
  background: var(--ap-trigger-bg, var(--ap-accent, #1e4f8a));
  color: var(--ap-trigger-color, #fff);
  cursor: pointer;
  line-height: 1;
  pointer-events: auto !important;
  font: inherit;
}
/* Require .accessproof-trigger so root classes like accessproof-trigger-pill do not paint a blob */
.accessproof-trigger.accessproof-trigger-fab {
  width: var(--ap-icon-size, 58px);
  height: var(--ap-icon-size, 58px);
  border-radius: 50%;
  font-size: calc(var(--ap-icon-size, 58px) * 0.4);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(30, 79, 138, 0.35);
}
.accessproof-trigger.accessproof-trigger-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(90deg, var(--ap-cta-start, #f28c28), var(--ap-cta-end, #f03488));
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 14px 18px;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(240, 52, 136, 0.28);
}
.accessproof-trigger.accessproof-trigger-corner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid #9ec4c0;
  background: #fff;
  color: #0d1023;
  border-radius: 16px;
  padding: 10px 14px 10px 10px;
  text-align: left;
  box-shadow: 0 10px 28px rgba(13, 16, 35, 0.12);
}
.accessproof-corner-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ap-trigger-bg, var(--ap-accent, #1e4f8a));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.accessproof-corner-txt { display: grid; gap: 2px; }
.accessproof-corner-txt b { font-size: 13px; font-weight: 700; }
.accessproof-corner-txt small { color: #646970; font-size: 11px; }
.accessproof-trigger.accessproof-trigger-edge {
  writing-mode: vertical-rl;
  top: 50% !important;
  bottom: auto !important;
  border: 0;
  background: var(--ap-trigger-bg, var(--ap-accent, #1e4f8a));
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 16px 8px;
}
.accessproof-trigger.accessproof-pos-bottom-left.accessproof-trigger-edge,
.accessproof-trigger.accessproof-pos-top-left.accessproof-trigger-edge {
  left: 0 !important;
  right: auto !important;
  border-radius: 0 10px 10px 0;
  transform: translateY(-50%);
}
.accessproof-trigger.accessproof-pos-bottom-right.accessproof-trigger-edge,
.accessproof-trigger.accessproof-pos-top-right.accessproof-trigger-edge {
  right: 0 !important;
  left: auto !important;
  border-radius: 10px 0 0 10px;
  transform: translateY(-50%) rotate(180deg);
}
.accessproof-dock-bar {
  position: fixed;
  z-index: 100002;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: rgba(13, 16, 35, 0.92);
  border-radius: 16px;
  padding: 8px;
  pointer-events: auto !important;
}
.accessproof-trigger.accessproof-trigger-dock {
  position: static;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--ap-trigger-bg, var(--ap-accent, #1e4f8a)), var(--awb-color8, #1a2b6d));
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 14px;
}
.accessproof-pos-bottom-right { right: 22px; bottom: 22px; }
.accessproof-pos-bottom-left { left: 22px; bottom: 22px; }
.accessproof-pos-top-right { right: 22px; top: 22px; }
.accessproof-pos-top-left { left: 22px; top: 22px; }
.accessproof-trigger:focus-visible {
  outline: 3px solid #84d0c8;
  outline-offset: 3px;
}
.accessproof-trigger *,
.accessproof-panel,
.accessproof-panel *,
.accessproof-dock-bar,
.accessproof-dock-bar * {
  pointer-events: auto !important;
}
body.cmplz-banner-active #accessproof-trigger,
body.cmplz-banner-active #accessproof-trigger-dock,
body.cmplz-banner-active #accessproof-panel,
body.cmplz-banner-active #accessproof-panel *,
body.cmplz-banner-active .accessproof-dock-bar {
  pointer-events: auto !important;
}

/* Mobile dock swap */
.accessproof-trigger-mobile-dock,
.accessproof-has-mobile-dock > .accessproof-dock-bar.accessproof-trigger-mobile-dock {
  display: none;
}
@media (max-width: 767px) {
  html.accessproof-mobile-dock .accessproof-has-mobile-dock .accessproof-trigger-primary:not(.accessproof-trigger-dock) {
    display: none !important;
  }
  html.accessproof-mobile-dock .accessproof-has-mobile-dock .accessproof-trigger-mobile-dock,
  html.accessproof-mobile-dock .accessproof-has-mobile-dock > .accessproof-dock-bar.accessproof-trigger-mobile-dock {
    display: block;
  }
  html.accessproof-mobile-dock .accessproof-has-mobile-dock #accessproof-trigger-dock {
    display: inline-flex;
  }
  .accessproof-trigger.accessproof-trigger-pill,
  .accessproof-trigger.accessproof-trigger-corner {
    left: 12px !important;
    right: 12px !important;
    bottom: 14px !important;
    top: auto !important;
    width: auto;
  }
  .accessproof-trigger.accessproof-trigger-pill { justify-content: center; }
}

/* Backdrop / scrim */
.accessproof-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100002;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(13, 16, 35, 0.45);
  cursor: pointer;
}
.accessproof-backdrop[hidden] { display: none !important; }

/* Panel — viewport-safe, no horizontal overflow */
.accessproof-panel {
  --ap-panel-radius: 16px;
  --ap-shadow-soft: 0 8px 24px rgba(13, 16, 35, 0.1);
  --ap-shadow-panel: 0 24px 60px rgba(13, 16, 35, 0.14);
  position: fixed;
  z-index: 100003;
  width: min(480px, calc(100vw - 24px));
  max-width: calc(100vw - 16px);
  max-height: min(84dvh, 780px);
  overflow-x: hidden;
  overflow-y: hidden;
  display: none;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ap-line);
  border-radius: var(--ap-panel-radius);
  padding: 0;
  color: #1d2327;
  font-family: Mulish, system-ui, sans-serif;
  box-sizing: border-box;
  box-shadow: var(--ap-shadow-panel);
}
.accessproof-panel :where(button, a, input, select) {
  max-width: 100%;
}
.accessproof-close {
  min-width: 40px;
  min-height: 40px;
  width: 40px;
  height: 40px;
  border: 0;
  background: #f0f0f1;
  border-radius: 10px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #1d2327;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.accessproof-close-round {
  border-radius: 50%;
  background: #0d1023;
  color: #fff;
  min-width: 36px;
  min-height: 36px;
  width: 36px;
  height: 36px;
  font-size: 18px;
}
.accessproof-close:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 79, 138, 0.35);
}
.accessproof-panel *,
.accessproof-panel *::before,
.accessproof-panel *::after { box-sizing: border-box; }
.accessproof-panel[hidden] { display: none !important; }
.accessproof-panel:not([hidden]) { display: flex; }
.accessproof-panel-br { right: 22px; bottom: 88px; }
.accessproof-panel-bl { left: 22px; bottom: 88px; }
.accessproof-panel-tr { right: 22px; top: 88px; }
.accessproof-panel-tl { left: 22px; top: 88px; }

/* Icon wrap — circular module icons */
.ap-ico-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ap-teal-soft, #e6f4f3);
  color: var(--ap-teal, var(--ap-accent, #1e4f8a));
  display: inline-grid;
  place-items: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.ap-ico-wrap.is-on {
  background: var(--ap-teal, var(--ap-accent, #1e4f8a));
  color: #fff;
  box-shadow: 0 2px 8px rgba(30, 79, 138, 0.28);
}

/* Intensity segmented control */
.accessproof-intensity {
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
  margin-top: 0;
  padding: 4px;
  background: #eef2f7;
  border-radius: 999px;
  border: 1px solid var(--ap-line, #e5e7eb);
  width: 100%;
}
.accessproof-intensity button {
  flex: 1 1 0;
  min-width: 0;
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 7px 6px;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  color: var(--ap-muted, #646970);
  cursor: pointer;
  min-height: 34px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.accessproof-intensity button:hover {
  color: var(--ap-teal, var(--ap-accent, #1e4f8a));
}
.accessproof-intensity button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 79, 138, 0.35);
}
.accessproof-intensity button.is-on {
  background: var(--ap-teal, var(--ap-accent, #1e4f8a));
  color: #fff;
  box-shadow: 0 2px 6px rgba(30, 79, 138, 0.25);
}

/* Module / list / card / tile cells with intensity */
.accessproof-mod-cell,
.accessproof-list-cell,
.accessproof-tile-cell,
.accessproof-card-cell {
  display: grid;
  gap: 0;
  min-width: 0;
}
.accessproof-mod-cell .accessproof-intensity,
.accessproof-list-cell .accessproof-intensity,
.accessproof-tile-cell .accessproof-intensity,
.accessproof-card-cell .accessproof-intensity {
  margin: 0 0 8px;
}
.accessproof-mod-cell { grid-column: span 1; }
.accessproof-card-cell-stack .accessproof-intensity { margin-top: 6px; }

/* Full-height sheet (drawer + cards) */
.accessproof-panel.accessproof-panel-sheet,
.accessproof-panel.accessproof-panel-drawer,
.accessproof-panel.accessproof-panel-cards {
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(520px, 94vw);
  max-width: 100vw;
  max-height: none;
  height: 100dvh;
  border-radius: 0;
  border: 0;
  background: #f3f4f6;
  box-shadow: -12px 0 60px rgba(13, 16, 35, 0.18);
}
.accessproof-panel.accessproof-panel-drawer {
  width: min(580px, 94vw);
}
body.admin-bar .accessproof-panel.accessproof-panel-sheet,
body.admin-bar .accessproof-panel.accessproof-panel-drawer,
body.admin-bar .accessproof-panel.accessproof-panel-cards {
  top: 32px;
  height: calc(100dvh - 32px);
}
@media screen and (max-width: 782px) {
  body.admin-bar .accessproof-panel.accessproof-panel-sheet,
  body.admin-bar .accessproof-panel.accessproof-panel-drawer,
  body.admin-bar .accessproof-panel.accessproof-panel-cards {
    top: 46px;
    height: calc(100dvh - 46px);
  }
}

.accessproof-drawer-brand {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px 0;
  background: linear-gradient(135deg, var(--ap-accent, #1e4f8a), #1e4f8a);
  color: #fff;
  flex-shrink: 0;
  z-index: 2;
}
.accessproof-panel-drawer .accessproof-drawer-meta {
  background: linear-gradient(135deg, var(--ap-accent, #1e4f8a), #1e4f8a);
  color: #fff;
  flex-shrink: 0;
}
.accessproof-drawer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 12px;
  margin-top: -6px;
}
.accessproof-lang-switch {
  display: inline-flex;
  gap: 4px;
  background: rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 3px;
}
.accessproof-lang-switch button {
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  min-height: 32px;
}
.accessproof-lang-switch button.is-on {
  background: #fff;
  color: var(--ap-accent, #1e4f8a);
}
.accessproof-hide-menu {
  position: relative;
}
.accessproof-hide-menu summary {
  list-style: none;
  cursor: pointer;
  color: rgba(255,255,255,.92);
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
}
.accessproof-hide-menu summary::-webkit-details-marker { display: none; }
.accessproof-hide-menu .accessproof-hide-opts {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 5;
  margin-top: 6px;
  background: #fff;
  color: #0d1023;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(13,16,35,.18);
  min-width: 180px;
  padding: 6px;
  display: grid;
  gap: 2px;
}
.accessproof-hide-menu .accessproof-hide-opts button {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  border-radius: 8px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  color: #0d1023;
}
.accessproof-hide-menu .accessproof-hide-opts button:hover {
  background: #e6f4f3;
  color: var(--ap-accent, #1e4f8a);
}
.accessproof-drawer-brand > div { min-width: 0; flex: 1; }
.accessproof-drawer-brand strong { display: block; font-size: 17px; font-family: "Kumbh Sans", system-ui, sans-serif; }
.accessproof-drawer-brand small {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  opacity: 0.9;
  font-size: 12px;
  line-height: 1.35;
  margin-top: 4px;
}
.accessproof-close-light {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  flex-shrink: 0;
  border-radius: 50% !important;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
}
.accessproof-close-light:hover {
  background: rgba(255, 255, 255, 0.28) !important;
}
.accessproof-close-light:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.45);
}
.accessproof-ot-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px 20px 16px;
  margin: 0 0 14px;
  box-shadow: 0 1px 2px rgba(13,16,35,.04);
}
.accessproof-ot-card .accessproof-sec-title {
  margin-top: 0;
}
.accessproof-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.accessproof-feature-grid .accessproof-card-cell { min-width: 0; }
.accessproof-feature-grid .accessproof-card-mod {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr;
  justify-items: center;
  text-align: center;
  padding: 18px 12px 14px;
  min-height: 120px;
  background: #f8fafc;
  border-radius: 10px;
}
.accessproof-feature-grid .accessproof-card-mod .accessproof-switch { position: absolute; top: 10px; right: 10px; }
.accessproof-feature-grid .accessproof-card-cell { position: relative; }
.accessproof-feature-grid .accessproof-card-txt { text-align: center; }
.accessproof-feature-grid .accessproof-card-txt small { display: none; }
.accessproof-feature-grid .accessproof-intensity {
  margin-top: 6px;
  padding: 3px;
  gap: 1px;
}
.accessproof-feature-grid .accessproof-intensity button {
  font-size: 9px;
  padding: 5px 2px;
  min-height: 28px;
}
.accessproof-compact-tools .accessproof-lang-switch {
  background: #eef2f7;
}
.accessproof-compact-tools .accessproof-lang-switch button {
  color: #646970;
}
.accessproof-compact-tools .accessproof-lang-switch button.is-on {
  background: var(--ap-accent, #1e4f8a);
  color: #fff;
}
@media (max-width: 520px) {
  .accessproof-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.accessproof-ot-card .accessproof-profile-rows {
  gap: 8px;
  margin: 0;
}
.accessproof-ot-card .accessproof-prow {
  border-color: #eef2f7;
  background: #f8fafc;
  border-radius: 10px;
}
.accessproof-ot-card .accessproof-prow:hover {
  border-color: #cad8f0;
  background: #fff;
}
.accessproof-ot-card .accessproof-prow.is-on {
  border-color: var(--ap-accent, #1e4f8a);
  background: #e6f4f3;
  box-shadow: 0 0 0 2px rgba(30, 79, 138, 0.2);
}
.accessproof-panel-utility {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}
.accessproof-btn-reset {
  width: 100%;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  color: #0d1023;
}
.accessproof-btn-reset:hover { border-color: var(--ap-accent, #1e4f8a); color: var(--ap-accent, #1e4f8a); }
.accessproof-skip-row {
  display: grid;
  gap: 8px;
}
.accessproof-skip-row select {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  font-size: 13px;
}
.accessproof-panel-drawer .accessproof-panel-body {
  padding: 16px 20px 24px;
}
.accessproof-profile-rows { display: grid; gap: 8px; }
.accessproof-prow {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  text-align: left;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  font: inherit;
  color: inherit;
  min-width: 0;
  max-width: 100%;
  min-height: 48px;
}
.accessproof-prow:hover {
  border-color: #cad8f0;
  box-shadow: 0 2px 8px rgba(13, 16, 35, 0.06);
}
.accessproof-prow:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 79, 138, 0.35);
}
.accessproof-prow.is-on {
  border-color: var(--ap-accent, #1e4f8a);
  box-shadow: 0 0 0 2px rgba(30, 79, 138, 0.25);
}
.accessproof-prow b { display: block; font-size: 13px; font-family: "Kumbh Sans", system-ui, sans-serif; }
.accessproof-prow small {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #646970;
  font-size: 11px;
  line-height: 1.35;
}
.accessproof-prow-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ap-teal, var(--ap-accent, #1e4f8a));
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-size: 15px;
}
.accessproof-chev { color: #9aa0a6; font-style: normal; font-size: 20px; line-height: 1; }

/* Toggle switch — iOS-like 44×24 (must never flex-grow) */
.accessproof-switch {
  box-sizing: border-box;
  width: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  height: 24px !important;
  border-radius: 999px;
  background: #d1d5db;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2px !important;
  flex: 0 0 44px !important;
  margin-left: auto;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 1px 2px rgba(13, 16, 35, 0.1);
  pointer-events: none;
}
.accessproof-switch i {
  box-sizing: border-box;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  border-radius: 50%;
  background: #fff;
  display: block;
  transform: translateX(0);
  box-shadow: 0 1px 3px rgba(13, 16, 35, 0.22);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.is-on > .accessproof-switch,
.accessproof-tab-row.is-on .accessproof-switch,
.accessproof-prow.is-on .accessproof-switch,
.accessproof-card-mod.is-on .accessproof-switch,
.accessproof-list-mod.is-on .accessproof-switch,
.accessproof-large-row.is-on .accessproof-switch,
.accessproof-simple-btn.is-on .accessproof-switch {
  background: var(--ap-teal, var(--ap-accent, #1e4f8a));
}
.is-on > .accessproof-switch i,
.accessproof-tab-row.is-on .accessproof-switch i,
.accessproof-prow.is-on .accessproof-switch i,
.accessproof-card-mod.is-on .accessproof-switch i,
.accessproof-list-mod.is-on .accessproof-switch i,
.accessproof-large-row.is-on .accessproof-switch i,
.accessproof-simple-btn.is-on .accessproof-switch i {
  transform: translateX(20px);
}

/* Card modules */
.accessproof-card-mods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.accessproof-card-mods-stack { grid-template-columns: 1fr; }
.accessproof-card-mods-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.accessproof-card-mods-2 .accessproof-card-cell {
  display: grid;
  gap: 0;
}
.accessproof-card-mods-2 .accessproof-card-cell .accessproof-intensity {
  margin: 8px 0 0;
  flex-wrap: nowrap;
}
.accessproof-card-mods-2 .accessproof-card-cell .accessproof-intensity button {
  font-size: 11px;
  padding: 6px 4px;
  min-height: 32px;
}
.accessproof-card-mod {
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(13, 16, 35, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: start;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  min-height: 64px;
}
.accessproof-card-mods-2 .accessproof-card-mod {
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  justify-items: start;
  align-items: start;
  gap: 6px;
  padding: 12px 10px;
}
.accessproof-card-mods-2 .accessproof-card-mod .ap-ico-wrap {
  grid-column: 1;
  grid-row: 1;
  font-size: 16px;
}
.accessproof-card-mods-2 .accessproof-card-mod .accessproof-switch {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  margin-top: 0;
}
.accessproof-card-mods-2 .accessproof-card-mod .accessproof-card-txt {
  grid-column: 1 / -1;
  grid-row: 2;
}
.accessproof-card-mod-lg {
  padding: 14px 12px;
  align-items: center;
}
.accessproof-card-mod:hover {
  box-shadow: 0 4px 14px rgba(13, 16, 35, 0.1);
}
.accessproof-card-mod:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 79, 138, 0.35);
}
.accessproof-card-mod.is-on {
  background: #e6f4f3;
  border-color: var(--ap-accent, #1e4f8a);
  box-shadow: 0 2px 10px rgba(30, 79, 138, 0.12);
}
.accessproof-card-mod .ap-ico-wrap { flex-shrink: 0; }
.accessproof-card-txt { min-width: 0; overflow: hidden; width: 100%; }
.accessproof-card-txt b {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #0b4f4f;
  overflow: hidden;
  text-overflow: ellipsis;
}
.accessproof-card-mods-2 .accessproof-card-txt b { white-space: nowrap; }
.accessproof-card-txt small {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #646970;
  font-size: 10px;
  line-height: 1.35;
  margin-top: 2px;
}
.accessproof-card-ctrl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.accessproof-prow-txt { min-width: 0; overflow: hidden; }
.accessproof-profile-rows { gap: 6px; }
.accessproof-prow { padding: 8px 10px; }

/* List / float / compact floating panels — OneTap-like width (~520–560) */
.accessproof-panel.accessproof-panel-list,
.accessproof-panel.accessproof-panel-compact,
.accessproof-panel.accessproof-panel-soft {
  width: min(520px, calc(100vw - 24px));
  max-height: min(84dvh, 780px);
}
.accessproof-panel.accessproof-panel-grid {
  width: min(440px, calc(100vw - 24px));
  max-height: min(84dvh, 780px);
}
.accessproof-panel.accessproof-panel-float {
  width: min(480px, calc(100vw - 24px));
  max-height: min(84dvh, 780px);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  border: 1px solid rgba(229, 231, 235, 0.85);
  box-shadow: var(--ap-shadow-panel, 0 24px 60px rgba(13, 16, 35, 0.14));
}
.accessproof-panel.accessproof-panel-chips {
  width: min(480px, calc(100vw - 24px));
  max-height: min(84dvh, 780px);
}
@supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
  .accessproof-panel.accessproof-panel-float {
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    backdrop-filter: blur(12px) saturate(1.2);
    background: rgba(255, 255, 255, 0.88);
  }
}
.accessproof-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.accessproof-profile-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (min-width: 1100px) {
  .accessproof-panel.accessproof-panel-sheet,
  .accessproof-panel.accessproof-panel-cards {
    width: min(560px, 92vw);
  }
  .accessproof-panel.accessproof-panel-drawer {
    width: min(580px, 94vw);
  }
}
@media (max-width: 420px) {
  .accessproof-card-mods-2 { grid-template-columns: 1fr; }
  .accessproof-profile-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.accessproof-pgrid {
  position: relative;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 12px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  padding: 10px 8px 8px;
  display: grid;
  gap: 4px;
  justify-items: center;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  color: inherit;
  min-width: 0;
  width: 100%;
}
.accessproof-pgrid > span:last-child {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-align: center;
  line-height: 1.25;
  max-width: 100%;
}
.accessproof-pgrid:hover {
  box-shadow: 0 2px 8px rgba(13, 16, 35, 0.06);
}
.accessproof-pgrid:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 79, 138, 0.35);
}
.accessproof-pgrid.is-on {
  background: #e6f4f3;
  border-color: var(--ap-accent, #1e4f8a);
  box-shadow: 0 0 0 2px rgba(30, 79, 138, 0.2);
}
.accessproof-pgrid-ico { font-size: 18px; }
.accessproof-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ap-accent, #1e4f8a);
  color: #fff;
  font-size: 10px;
  display: none;
  place-items: center;
  line-height: 1;
}
.accessproof-pgrid.is-on .accessproof-check { display: grid; }
.accessproof-list-mods { display: grid; gap: 6px; }
.accessproof-list-mod {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--ap-line, #e5e7eb);
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
  min-width: 0;
  width: 100%;
  min-height: 52px;
}
.accessproof-list-mod .accessproof-info { display: none; }
.accessproof-list-mod {
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.accessproof-list-mod:hover {
  box-shadow: 0 2px 8px rgba(13, 16, 35, 0.06);
}
.accessproof-list-mod:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 79, 138, 0.35);
}
.accessproof-list-mod.is-on {
  background: #f3faf9;
  border-color: var(--ap-accent, #1e4f8a);
  box-shadow: 0 0 0 1px rgba(30, 79, 138, 0.15);
}
.accessproof-list-txt { min-width: 0; overflow: hidden; }
.accessproof-list-txt b {
  display: block;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.accessproof-list-txt small {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: #646970;
  font-size: 10px;
}
.accessproof-info {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #c3c4c7;
  color: #646970;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.accessproof-more {
  display: block;
  margin: 12px 0 4px;
  font-size: 12px;
  font-weight: 700;
  color: #0b4f4f;
  text-decoration: none;
}

/* Action bar */
.accessproof-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 10px;
}
.accessproof-action {
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 12px;
  padding: 8px 4px;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  color: #1d2327;
  cursor: pointer;
  text-decoration: none;
  display: grid;
  justify-items: center;
  gap: 4px;
  min-width: 0;
  min-height: 44px;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.accessproof-action:hover {
  box-shadow: 0 2px 8px rgba(13, 16, 35, 0.06);
}
.accessproof-action:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 79, 138, 0.35);
}
.accessproof-action span { font-size: 14px; }
button.accessproof-action { width: 100%; }

.accessproof-compact-grid-dense {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Compact layout — wider popup, row + full-width intensity (OneTap spacing) */
.accessproof-panel.accessproof-panel-compact {
  width: min(520px, calc(100vw - 24px));
  max-height: min(84dvh, 780px);
  border-radius: 20px;
}
.accessproof-compact-h { align-items: center; }
.accessproof-compact-tools {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.accessproof-compact-tools select {
  max-width: 150px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid var(--ap-line, #e5e7eb);
  padding: 8px 14px;
  background: #fff;
  color: var(--ap-ink, #0d1023);
  box-shadow: var(--ap-shadow-soft, 0 2px 8px rgba(13, 16, 35, 0.06));
}
.accessproof-compact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.accessproof-compact-stack {
  display: grid;
  gap: 14px;
}
.accessproof-compact-row {
  display: grid;
  gap: 10px;
  min-width: 0;
}
.accessproof-compact-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.accessproof-compact-row .accessproof-intensity {
  margin: 0;
}
.accessproof-panel-compact .accessproof-panel-body {
  padding: 16px 18px 18px;
}
.accessproof-panel-compact .accessproof-panel-h {
  padding: 16px 18px 12px;
}
.accessproof-panel-compact .accessproof-mod-actions {
  margin-top: 4px;
  gap: 10px;
}
.accessproof-tile {
  border: 1px solid var(--ap-line, #e5e7eb);
  background: #f8fafc;
  border-radius: 14px;
  padding: 20px 14px 16px;
  display: grid;
  gap: 10px;
  justify-items: center;
  align-content: center;
  cursor: pointer;
  font: inherit;
  color: inherit;
  min-width: 0;
  width: 100%;
  min-height: 100px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.accessproof-tile-spacer {
  visibility: hidden;
  pointer-events: none;
  border: 0;
  background: transparent;
  min-height: 100px;
  box-shadow: none;
}
.accessproof-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--ap-shadow-soft, 0 4px 12px rgba(13, 16, 35, 0.08));
}
.accessproof-tile:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 79, 138, 0.35);
}
.accessproof-tile.is-on {
  background: var(--ap-teal-soft, #e6f4f3);
  border-color: var(--ap-teal, var(--ap-accent, #1e4f8a));
  border-width: 2px;
  box-shadow: none;
}
.accessproof-tile .ap-ico-wrap {
  width: 44px;
  height: 44px;
  font-size: 17px;
}
.accessproof-tile > span {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.25;
}
.accessproof-dots { display: flex; gap: 3px; flex-shrink: 0; }
.accessproof-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cfd6e2;
  display: block;
}
.accessproof-dots i.is-on { background: var(--ap-accent, #1e4f8a); }

/* Icon grid panel (Hilfswerkzeuge) */
.accessproof-panel.accessproof-panel-grid {
  width: min(440px, calc(100vw - 24px));
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: var(--ap-shadow-panel, 0 24px 60px rgba(13, 16, 35, 0.14));
}
.accessproof-grid-h {
  padding: 12px 14px 10px;
  border-bottom: 1px solid var(--ap-line, #e5e7eb);
}
.accessproof-grid-h strong {
  font-size: 15px;
  font-weight: 800;
  color: #0d1023;
}
.accessproof-grid-profile {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--ap-line, #e5e7eb);
  border-radius: 999px;
  padding: 2px 4px 2px 8px;
  background: #fff;
  box-shadow: var(--ap-shadow-soft, 0 2px 8px rgba(13, 16, 35, 0.06));
}
.accessproof-grid-profile-ico {
  font-style: normal;
  font-size: 12px;
  line-height: 1;
  opacity: 0.75;
}
.accessproof-panel-grid .accessproof-compact-tools select,
.accessproof-panel-grid .accessproof-grid-profile select {
  max-width: 96px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 6px 4px 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  color: #0d1023;
}
.accessproof-close-sm {
  width: 28px;
  height: 28px;
  min-width: 28px;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  border-radius: 8px;
}
.accessproof-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 2px 0 4px;
}
.accessproof-panel-grid .accessproof-panel-body {
  padding: 14px 16px 16px;
}
.accessproof-panel-grid .accessproof-tile {
  background: #fff;
  border: 1px solid var(--ap-line, #e5e7eb);
  border-radius: 12px;
  padding: 14px 8px 12px;
  min-height: 88px;
  gap: 8px;
}
.accessproof-panel-grid .accessproof-grid-ico {
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
  color: #1d2327;
  line-height: 1;
  display: grid;
  place-items: center;
  min-height: 22px;
}
.accessproof-panel-grid .accessproof-tile > span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.accessproof-panel-grid .accessproof-tile.is-on {
  background: var(--ap-accent, #1e4f8a);
  border-color: var(--ap-accent, #1e4f8a);
  color: #fff;
  box-shadow: none;
}
.accessproof-panel-grid .accessproof-tile.is-on .accessproof-grid-ico {
  color: #fff;
}
.accessproof-panel-grid .accessproof-tile.is-on .accessproof-dots i {
  background: rgba(255, 255, 255, 0.35);
}
.accessproof-panel-grid .accessproof-tile.is-on .accessproof-dots i.is-on {
  background: #fff;
}
.accessproof-panel-grid .accessproof-mod-actions { display: none; }

/* Modern panel layouts — soft, chips, tabs, command */
.accessproof-panel.accessproof-panel-soft {
  width: min(520px, calc(100vw - 24px));
  max-height: 84dvh;
  border-radius: 24px;
}
.accessproof-panel-soft .accessproof-panel-body {
  padding: 18px 20px;
}
.accessproof-panel-soft .accessproof-tile {
  min-height: 108px;
  padding: 22px 14px;
  background: #f8fafc;
  border-radius: 16px;
}
.accessproof-panel-soft .accessproof-tile.is-on {
  background: var(--ap-accent, #1e4f8a);
  border-color: var(--ap-accent, #1e4f8a);
  color: #fff;
  box-shadow: none;
}
.accessproof-panel-soft .accessproof-tile.is-on .ap-ico-wrap {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.accessproof-panel-soft .accessproof-tile.is-on .accessproof-dots i {
  background: rgba(255, 255, 255, 0.35);
}
.accessproof-panel-soft .accessproof-tile.is-on .accessproof-dots i.is-on {
  background: #fff;
}

.accessproof-panel.accessproof-panel-chips {
  border-radius: 28px;
}
.accessproof-chip-rail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 12px;
}
.accessproof-chip {
  flex: 0 0 auto;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font: inherit;
  cursor: pointer;
  color: inherit;
}
.accessproof-chip.is-on,
.accessproof-chip.is-selected {
  background: var(--ap-accent, #1e4f8a);
  color: #fff;
  border-color: var(--ap-accent, #1e4f8a);
}
.accessproof-chip-detail {
  margin-top: 8px;
}
.accessproof-chip-detail .accessproof-intensity {
  width: 100%;
}

.accessproof-panel.accessproof-panel-tabs {
  top: auto;
  bottom: 88px;
  width: min(560px, calc(100vw - 24px));
  height: auto;
  max-height: min(78dvh, 720px);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(13, 16, 35, 0.16);
}
.accessproof-panel.accessproof-panel-tabs.accessproof-panel-br,
.accessproof-panel.accessproof-panel-tabs.accessproof-panel-tr { right: 22px; left: auto; }
.accessproof-panel.accessproof-panel-tabs.accessproof-panel-bl,
.accessproof-panel.accessproof-panel-tabs.accessproof-panel-tl { left: 22px; right: auto; }

.accessproof-panel-tabs .accessproof-tabs {
  margin: 0 16px 12px;
}
.accessproof-panel-tabs .accessproof-modern-h {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 14px;
  border-bottom: 0;
}
.accessproof-panel-tabs .accessproof-modern-h .ap-ico-wrap {
  width: 44px;
  height: 44px;
  background: var(--ap-accent, #1e4f8a);
  color: #fff;
}
.accessproof-panel-tabs .accessproof-modern-h strong {
  font-size: 18px;
  color: var(--ap-accent, #1e4f8a);
}
.accessproof-tabs-lede {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.45;
  color: #646970;
}
.accessproof-tab-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 12px;
  padding: 0;
}
.accessproof-tab-panel[data-ap-tab-panel="profiles"] {
  display: grid;
  gap: 4px;
}
.accessproof-tab-panel[data-ap-tab-panel="profiles"][hidden] {
  display: none !important;
}
.accessproof-tab-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 0;
  background: #fff;
  padding: 12px 10px;
  border-radius: 12px;
  text-align: left;
  font: inherit;
  cursor: pointer;
  min-height: 52px;
  box-sizing: border-box;
}
.accessproof-tab-row:hover {
  background: #f8fafc;
}
.accessproof-tab-row.is-on {
  background: #f3faf9;
}
.accessproof-tab-row .ap-ico-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eef2f7;
  color: var(--ap-accent, #1e4f8a);
  flex: 0 0 36px;
}
.accessproof-tab-label {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
  color: #0d1023;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.accessproof-tab-row .accessproof-switch {
  margin-left: auto;
  flex: 0 0 44px !important;
}
.accessproof-panel-tabs .accessproof-panel-body {
  padding: 10px 20px 18px;
}
.accessproof-panel-tabs .accessproof-tabs {
  margin: 0 20px 10px;
  padding: 4px;
  gap: 4px;
  background: #eef2f7;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
}
.accessproof-panel-tabs .accessproof-tab {
  font-size: 12px;
  padding: 8px 10px;
  min-height: 36px;
  border-radius: 999px;
}
.accessproof-panel-tabs .accessproof-drawer-brand {
  display: none;
}
.accessproof-panel-tabs .accessproof-panel-foot {
  padding: 12px 18px 16px;
}

.accessproof-panel.accessproof-panel-command {
  left: 50% !important;
  right: auto !important;
  bottom: 88px !important;
  top: auto !important;
  transform: translateX(-50%);
  width: min(520px, calc(100vw - 24px));
  height: auto;
  max-height: min(70dvh, 640px);
  border-radius: 24px;
  background: #fff;
}

/* Bottom bar — full-width dock, horizontal tiles (override base .accessproof-tile / .accessproof-panel-body) */
.accessproof-panel.accessproof-panel-bottom_bar,
.accessproof-panel.accessproof-panel-bottom-bar-fixed {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  top: auto !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
  border-radius: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  background: #fff !important;
  box-shadow: 0 -4px 24px rgba(13, 16, 35, 0.14) !important;
  z-index: 100004 !important;
  transform: none !important;
  flex-direction: column !important;
  overflow: visible !important;
}

.accessproof-panel.accessproof-panel-bottom_bar .accessproof-panel-h,
.accessproof-panel.accessproof-panel-bottom-bar-fixed .accessproof-panel-h {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 6px 14px !important;
  border-bottom: 1px solid #e5e7eb !important;
  flex: 0 0 auto !important;
}

.accessproof-bottom-bar-title {
  flex: 1;
}

.accessproof-bottom-bar-title strong {
  font-size: 13px;
  font-weight: 700;
}

.accessproof-panel.accessproof-panel-bottom_bar .accessproof-panel-body,
.accessproof-panel.accessproof-panel-bottom-bar-fixed .accessproof-panel-body {
  padding: 8px 12px 10px !important;
  flex: 0 0 auto !important;
  min-height: 0 !important;
  width: 100% !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
}

.accessproof-bottom-bar-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 8px !important;
  width: max-content !important;
  min-width: 100% !important;
}

.accessproof-bottom-bar-grid .accessproof-tile {
  flex: 0 0 auto !important;
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 72px !important;
  max-width: 96px !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 8px 10px !important;
  gap: 4px !important;
  font-size: 11px !important;
  border-radius: 10px !important;
  border: 1px solid #d1d5db !important;
  background: #f8fafc !important;
  box-shadow: none !important;
  transform: none !important;
}

.accessproof-bottom-bar-grid .accessproof-tile:hover {
  background: #eef2f7 !important;
  border-color: #9ca3af !important;
  transform: none !important;
  box-shadow: none !important;
}

.accessproof-bottom-bar-grid .accessproof-tile.is-on {
  background: #1e4f8a !important;
  color: #fff !important;
  border-color: #1e4f8a !important;
}

.accessproof-bottom-bar-grid .accessproof-tile > span {
  font-size: 11px !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  max-width: 100% !important;
}

.accessproof-bottom-bar-grid .accessproof-grid-ico {
  display: block !important;
  font-size: 16px !important;
  margin: 0 !important;
  font-style: normal !important;
  line-height: 1 !important;
}

@media (max-width: 640px) {
  .accessproof-panel.accessproof-panel-bottom_bar .accessproof-panel-h,
  .accessproof-panel.accessproof-panel-bottom-bar-fixed .accessproof-panel-h {
    padding: 4px 10px !important;
  }
  .accessproof-panel.accessproof-panel-bottom_bar .accessproof-panel-body,
  .accessproof-panel.accessproof-panel-bottom-bar-fixed .accessproof-panel-body {
    padding: 6px 8px 8px !important;
  }
  .accessproof-bottom-bar-grid {
    gap: 6px !important;
  }
  .accessproof-bottom-bar-grid .accessproof-tile {
    min-width: 64px !important;
    max-width: 84px !important;
    padding: 6px 8px !important;
  }
}

.accessproof-command-handle {
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: #cfd6e2;
  margin: 10px auto 6px;
}
.accessproof-panel-command .accessproof-grid-4 {
  gap: 10px;
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 768px) {
  .accessproof-panel.accessproof-panel-sheet,
  .accessproof-panel.accessproof-panel-cards {
    width: min(480px, 56vw);
  }
  .accessproof-panel.accessproof-panel-drawer {
    width: min(500px, 52vw);
  }
  .accessproof-profile-grid,
  .accessproof-profile-grid-drawer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Mobile bottom sheet */
@media (max-width: 767px) {
  .accessproof-panel.accessproof-panel-drawer,
  .accessproof-panel.accessproof-panel-compact,
  .accessproof-panel.accessproof-panel-grid,
  .accessproof-panel.accessproof-panel-float,
  .accessproof-panel.accessproof-panel-list,
  .accessproof-panel.accessproof-panel-cards,
  .accessproof-panel.accessproof-panel-sheet,
  .accessproof-panel.accessproof-panel-simple,
  .accessproof-panel.accessproof-panel-quick,
  .accessproof-panel.accessproof-panel-soft,
  .accessproof-panel.accessproof-panel-chips,
  .accessproof-panel.accessproof-panel-tabs,
  .accessproof-panel.accessproof-panel-command {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100vw !important;
    height: auto !important;
    max-height: min(85dvh, 85vh);
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -10px 60px rgba(13, 16, 35, 0.18);
  }
  body.admin-bar .accessproof-panel.accessproof-panel-sheet,
  body.admin-bar .accessproof-panel.accessproof-panel-drawer,
  body.admin-bar .accessproof-panel.accessproof-panel-cards {
    top: auto;
    height: auto;
    max-height: min(80dvh, 80vh);
  }
  .accessproof-panel.accessproof-panel-drawer,
  .accessproof-panel.accessproof-panel-cards,
  .accessproof-panel.accessproof-panel-sheet {
    background: #f3f4f6;
  }
  .accessproof-panel.accessproof-panel-compact,
  .accessproof-panel.accessproof-panel-grid,
  .accessproof-panel.accessproof-panel-list,
  .accessproof-panel.accessproof-panel-float,
  .accessproof-panel.accessproof-panel-simple,
  .accessproof-panel.accessproof-panel-quick,
  .accessproof-panel.accessproof-panel-soft,
  .accessproof-panel.accessproof-panel-chips,
  .accessproof-panel.accessproof-panel-tabs,
  .accessproof-panel.accessproof-panel-command {
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
    width: auto !important;
    transform: none;
  }
  .accessproof-profile-grid,
  .accessproof-profile-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* Keep 2×2 module cards in bottom-sheet (matches preview-mobile-sheet) */
}

.accessproof-panel-h {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px 12px;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
  z-index: 2;
  flex-shrink: 0;
}
.accessproof-panel-h > div { min-width: 0; flex: 1; }
.accessproof-panel-h strong { display: block; font-size: 17px; font-family: "Kumbh Sans", system-ui, sans-serif; }
.accessproof-panel-h span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 12px;
  color: #646970;
}
.accessproof-panel-body {
  padding: 16px 18px 18px;
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
  overflow-x: hidden !important;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--ap-accent, #1e4f8a) #eef2f7;
}
.accessproof-panel-body::-webkit-scrollbar { width: 6px; }
.accessproof-panel-body::-webkit-scrollbar-track { background: #eef2f7; border-radius: 999px; }
.accessproof-panel-body::-webkit-scrollbar-thumb { background: var(--ap-accent, #1e4f8a); border-radius: 999px; }
.accessproof-panel-foot {
  flex-shrink: 0;
  padding: 12px 18px 16px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
  min-width: 0;
}
.accessproof-panel-foot .accessproof-actions { margin: 0; }

/* Tabs / accordion / simple / quick / large */
.accessproof-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px;
  margin: 0 12px 8px;
  background: #eef2f7;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  flex-shrink: 0;
}
.accessproof-tab {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 10px 8px;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  color: #646970;
  cursor: pointer;
  min-height: 44px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.accessproof-tab:hover {
  color: #0b4f4f;
}
.accessproof-tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 79, 138, 0.35);
}
.accessproof-tab.is-on {
  background: var(--ap-teal, var(--ap-accent, #1e4f8a));
  color: #fff;
  box-shadow: 0 2px 10px rgba(30, 79, 138, 0.3);
}
.accessproof-tab-panel { display: grid; gap: 6px; min-width: 0; }
.accessproof-tab-panel[hidden] { display: none !important; }
.accessproof-acc {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13, 16, 35, 0.04);
}
.accessproof-acc > summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  font-family: "Kumbh Sans", system-ui, sans-serif;
  padding: 12px 14px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: background 0.2s ease;
}
.accessproof-acc > summary:hover {
  background: #f8fafc;
}
.accessproof-acc > summary:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(30, 79, 138, 0.35);
}
.accessproof-acc > summary::-webkit-details-marker { display: none; }
.accessproof-acc > summary::after {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ap-accent, #1e4f8a);
  border-bottom: 2px solid var(--ap-accent, #1e4f8a);
  transform: rotate(45deg);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.accessproof-acc[open] > summary::after {
  transform: rotate(-135deg);
}
.accessproof-acc-body { padding: 0 10px 10px; display: grid; gap: 6px; }
.accessproof-simple-profiles,
.accessproof-simple-mods { display: grid; gap: 8px; }
.accessproof-simple-btn {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  padding: 12px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: inherit;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.accessproof-simple-btn:hover {
  box-shadow: 0 2px 8px rgba(13, 16, 35, 0.06);
}
.accessproof-simple-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 79, 138, 0.35);
}
.accessproof-simple-btn.is-on {
  background: #e6f4f3;
  border-color: var(--ap-accent, #1e4f8a);
  box-shadow: 0 0 0 2px rgba(30, 79, 138, 0.15);
}
.accessproof-simple-btn .ap-ico-wrap {
  width: 36px;
  height: 36px;
}
.accessproof-simple-btn b { font-size: 14px; }
.accessproof-quick-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.accessproof-quick-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--ap-line, #e5e7eb);
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  color: inherit;
  box-shadow: var(--ap-shadow-soft, 0 2px 8px rgba(13, 16, 35, 0.06));
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.accessproof-quick-chip .ap-ico-wrap {
  width: 32px;
  height: 32px;
  font-size: 14px;
}
.accessproof-quick-chip:hover {
  box-shadow: 0 4px 14px rgba(13, 16, 35, 0.1);
}
.accessproof-quick-chip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 79, 138, 0.35);
}
.accessproof-quick-chip.is-on {
  background: var(--ap-teal, var(--ap-accent, #1e4f8a));
  border-color: var(--ap-teal, var(--ap-accent, #1e4f8a));
  color: #fff;
  box-shadow: 0 4px 16px rgba(30, 79, 138, 0.32);
}
.accessproof-quick-chip.is-on .ap-ico-wrap {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.accessproof-large-body { display: grid; gap: 10px; }
.accessproof-large-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 64px;
  width: 100%;
  border: 1px solid var(--ap-line, #e5e7eb);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: inherit;
  box-shadow: var(--ap-shadow-soft, 0 2px 8px rgba(13, 16, 35, 0.06));
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.accessproof-large-row .ap-ico-wrap {
  width: 40px;
  height: 40px;
  font-size: 16px;
}
.accessproof-large-row:hover {
  box-shadow: 0 4px 14px rgba(13, 16, 35, 0.1);
}
.accessproof-large-row:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 79, 138, 0.35);
}
.accessproof-large-row.is-on {
  background: linear-gradient(135deg, var(--ap-accent, #1e4f8a), #1e4f8a);
  border-color: var(--ap-accent, #1e4f8a);
  color: #fff;
  box-shadow: 0 4px 16px rgba(30, 79, 138, 0.28);
}
.accessproof-large-row.is-on .accessproof-list-txt small { color: rgba(255,255,255,.85); }
.accessproof-brand-large strong { font-size: 20px; }
.accessproof-panel-large {
  background: #f5f7fb;
}
@media (prefers-reduced-motion: reduce) {
  .accessproof-panel,
  .accessproof-backdrop,
  .accessproof-switch,
  .accessproof-switch i,
  .accessproof-tile,
  .accessproof-acc > summary::after { transition: none !important; }
  .accessproof-tile:hover { transform: none; }
}
.accessproof-sec-title {
  margin: 14px 0 10px;
  padding-left: 10px;
  border-left: 3px solid var(--ap-accent, #1e4f8a);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #646970;
  font-weight: 700;
  font-family: "Kumbh Sans", system-ui, sans-serif;
}
.accessproof-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.accessproof-profile {
  border: 1px solid var(--ap-line, #e5e7eb);
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  min-height: 48px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.accessproof-profile:hover {
  box-shadow: var(--ap-shadow-soft, 0 2px 8px rgba(13, 16, 35, 0.06));
}
.accessproof-profile:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 79, 138, 0.35);
}
.accessproof-profile.is-on {
  background: var(--ap-teal-soft, #e6f4f3);
  border-color: var(--ap-teal, var(--ap-accent, #1e4f8a));
  color: #0b4f4f;
  box-shadow: 0 0 0 3px rgba(30, 79, 138, 0.22);
}
.accessproof-mods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.accessproof-mod-cell .accessproof-mod {
  width: 100%;
}
.accessproof-mod {
  border: 1px solid var(--ap-line, #e5e7eb);
  background: #fff;
  border-radius: 14px;
  padding: 12px 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 64px;
  box-shadow: var(--ap-shadow-soft, 0 2px 8px rgba(13, 16, 35, 0.04));
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}
.accessproof-mod:hover {
  box-shadow: 0 4px 14px rgba(13, 16, 35, 0.08);
}
.accessproof-mod:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 79, 138, 0.35);
}
.accessproof-mod.is-on {
  background: var(--ap-teal-soft, #e6f4f3);
  border-color: var(--ap-teal, var(--ap-accent, #1e4f8a));
  box-shadow: 0 0 0 2px rgba(30, 79, 138, 0.15);
}
.accessproof-mod-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.accessproof-mod-actions button {
  border: 1px solid #c3c4c7;
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}
.accessproof-footer {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #e5e7eb;
}
.accessproof-note {
  margin: 0 0 8px;
  font-size: 11px;
  color: #646970;
  line-height: 1.45;
}
.accessproof-note a { color: #0b4f4f; font-weight: 600; }
.accessproof-reset {
  border: 0;
  background: transparent;
  color: #b32d2e;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

/* ===== Module states on html ===== */
html.ap-fs-1 { font-size: 112.5% !important; }
html.ap-fs-2 { font-size: 125% !important; }
html.ap-fs-3 { font-size: 137.5% !important; }
html.ap-fs-4 { font-size: 150% !important; }

html.ap-highlight-links a {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  color: #0b4f4f !important;
  background: #fff3cd !important;
}

html.ap-lh-1 body { line-height: 1.8 !important; }
html.ap-lh-2 body { line-height: 2.1 !important; }
html.ap-lh-3 body { line-height: 2.4 !important; }

html.ap-readable-font,
html.ap-readable-font body,
html.ap-readable-font body *:not(#accessproof-root):not(#accessproof-root *) {
  font-family: Arial, Helvetica, system-ui, sans-serif !important;
}

html.ap-dyslexic-font,
html.ap-dyslexic-font body,
html.ap-dyslexic-font body *:not(.accessproof-panel):not(.accessproof-panel *) {
  font-family: "AccessProofDyslexic", Arial, sans-serif !important;
}

html.ap-big-cursor,
html.ap-big-cursor *:not(#accessproof-root):not(#accessproof-root *) {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' stroke='%23fff' stroke-width='2' d='M4 4l10 22 2-8 8-2z'/%3E%3C/svg%3E") 4 4, auto !important;
}

html.ap-align-left body,
html.ap-align-left body p,
html.ap-align-left body li { text-align: left !important; }
html.ap-align-center body,
html.ap-align-center body p,
html.ap-align-center body li { text-align: center !important; }
html.ap-align-justify body,
html.ap-align-justify body p,
html.ap-align-justify body li { text-align: justify !important; }

html.ap-ls-1 body { letter-spacing: .06em !important; }
html.ap-ls-2 body { letter-spacing: .12em !important; }
html.ap-ls-3 body { letter-spacing: .18em !important; }

html.ap-font-weight body,
html.ap-font-weight body p,
html.ap-font-weight body li { font-weight: 700 !important; }

html.ap-dark-contrast body {
  background: #111 !important;
  color: #f5f5f5 !important;
  filter: none !important;
}
html.ap-dark-contrast body a { color: #7dd3c7 !important; }
html.ap-dark-contrast .accessproof-panel { filter: none !important; color: #1d2327 !important; background: #fff !important; }

html.ap-light-contrast body {
  background: #fff !important;
  color: #000 !important;
  filter: contrast(1.15) brightness(1.05);
}
html.ap-light-contrast a { text-decoration: underline !important; }
html.ap-light-contrast .accessproof-panel,
html.ap-light-contrast .accessproof-panel * {
  filter: none !important;
  color: #1d2327 !important;
}
html.ap-light-contrast .accessproof-panel { background: #fff !important; }

html.ap-high-contrast {
  filter: contrast(1.35);
}
html.ap-high-contrast body {
  background: #fff !important;
  color: #000 !important;
}

html.ap-monochrome { filter: grayscale(1) !important; }
html.ap-sat-1 { filter: saturate(0.35) !important; }
html.ap-sat-2 { filter: saturate(1.8) !important; }
html.ap-monochrome.ap-sat-1,
html.ap-monochrome.ap-sat-2,
html.ap-high-contrast.ap-monochrome { filter: grayscale(1) contrast(1.2) !important; }

html.ap-stop-animations *:not(#accessproof-root):not(#accessproof-root *),
html.ap-stop-animations *:not(#accessproof-root):not(#accessproof-root *)::before,
html.ap-stop-animations *:not(#accessproof-root):not(#accessproof-root *)::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

html.ap-hide-images img,
html.ap-hide-images picture,
html.ap-hide-images svg:not(.accessproof-trigger svg),
html.ap-hide-images video {
  opacity: 0 !important;
  visibility: hidden !important;
}

html.ap-highlight-titles h1,
html.ap-highlight-titles h2,
html.ap-highlight-titles h3,
html.ap-highlight-titles h4,
html.ap-highlight-titles h5,
html.ap-highlight-titles h6 {
  outline: 3px solid var(--ap-accent, #1e4f8a) !important;
  outline-offset: 2px !important;
  background: rgba(30, 79, 138, 0.08) !important;
}

html.ap-highlight-hover a:hover,
html.ap-highlight-hover button:hover,
html.ap-highlight-hover [role="button"]:hover,
html.ap-highlight-hover input:hover,
html.ap-highlight-hover select:hover {
  outline: 3px solid #f28c28 !important;
  outline-offset: 2px !important;
}

html.ap-keyboard-nav a:focus,
html.ap-keyboard-nav button:focus,
html.ap-keyboard-nav input:focus,
html.ap-keyboard-nav select:focus,
html.ap-keyboard-nav textarea:focus,
html.ap-keyboard-nav [tabindex]:focus {
  outline: 4px solid #f28c28 !important;
  outline-offset: 3px !important;
}

.accessproof-reading-line {
  position: fixed;
  left: 0;
  right: 0;
  height: 40px;
  margin-top: -20px;
  background: rgba(30, 79, 138, 0.12);
  border-top: 2px solid var(--ap-accent, #1e4f8a);
  border-bottom: 2px solid var(--ap-accent, #1e4f8a);
  pointer-events: none !important;
  z-index: 99998;
  display: none;
}
html.ap-reading-line .accessproof-reading-line { display: block; }

.accessproof-reading-mask-top,
.accessproof-reading-mask-bottom {
  position: fixed;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.65);
  pointer-events: none !important;
  z-index: 99997;
  display: none;
}
.accessproof-reading-mask-top { top: 0; }
.accessproof-reading-mask-bottom { bottom: 0; }
html.ap-reading-mask .accessproof-reading-mask-top,
html.ap-reading-mask .accessproof-reading-mask-bottom { display: block; }

.accessproof-magnifier {
  position: fixed;
  z-index: 100004;
  max-width: 320px;
  padding: 10px 12px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  font-size: 22px;
  line-height: 1.35;
  pointer-events: none !important;
  display: none;
  box-shadow: none;
}
html.ap-text-magnifier .accessproof-magnifier.is-on { display: block; }

.accessproof-kb-hint {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 100004;
  background: var(--ap-accent, #1e4f8a);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  display: none;
  pointer-events: none !important;
}
html.ap-keyboard-nav .accessproof-kb-hint { display: block; }

/* V3 modules */
html.ap-fsd-1 { font-size: 95% !important; }
html.ap-fsd-2 { font-size: 90% !important; }
html.ap-fsd-3 { font-size: 85% !important; }
html.ap-fsd-4 { font-size: 80% !important; }
html.ap-ws-1 body { word-spacing: 0.12em !important; }
html.ap-ws-2 body { word-spacing: 0.22em !important; }
html.ap-ws-3 body { word-spacing: 0.35em !important; }
html.ap-highlight-buttons button,
html.ap-highlight-buttons [role="button"],
html.ap-highlight-buttons input[type="submit"],
html.ap-highlight-buttons .button {
  outline: 2px solid #f28c28 !important;
  outline-offset: 2px !important;
}
html.ap-cursor-black,
html.ap-cursor-black * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cpath fill='%23000' stroke='%23fff' stroke-width='1' d='M4 4 L4 28 L12 22 L18 30 L22 28 L16 20 L26 20 Z'/%3E%3C/svg%3E") 2 2, auto !important; }
html.ap-cursor-white,
html.ap-cursor-white * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cpath fill='%23fff' stroke='%23000' stroke-width='1' d='M4 4 L4 28 L12 22 L18 30 L22 28 L16 20 L26 20 Z'/%3E%3C/svg%3E") 2 2, auto !important; }
html.ap-grayscale { filter: grayscale(1) !important; }
html.ap-invert { filter: invert(1) hue-rotate(180deg) !important; }
/* Colorblind approximations (CSS-only; no SVG filter deps) */
html.ap-protanopia { filter: saturate(0.7) hue-rotate(-20deg) !important; }
html.ap-deuteranopia { filter: saturate(0.65) hue-rotate(20deg) !important; }
html.ap-tritanopia { filter: saturate(0.6) hue-rotate(90deg) !important; }
html.ap-protanopia .accessproof-panel,
html.ap-deuteranopia .accessproof-panel,
html.ap-tritanopia .accessproof-panel { filter: none !important; }
html.ap-focus-ring a:focus,
html.ap-focus-ring button:focus,
html.ap-focus-ring input:focus,
html.ap-focus-ring select:focus,
html.ap-focus-ring textarea:focus,
html.ap-focus-ring [tabindex]:focus {
  outline: 4px solid #f03488 !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 6px rgba(240, 52, 136, 0.25) !important;
}
html.ap-reading-ruler .accessproof-reading-line,
html.ap-reading-ruler .accessproof-reading-line.is-ruler {
  display: block;
  height: 8px;
  margin-top: -4px;
  background: rgba(242, 140, 40, 0.85);
  border: 0;
}

html.accessproof-panel-open .accessproof-trigger-mobile-dock {
  visibility: hidden;
  pointer-events: none;
}
.accessproof-panel strong {
  font-family: "Kumbh Sans", system-ui, sans-serif;
}

/* === bottom_bar cascade lock (must be last) === */
.accessproof-panel.accessproof-panel-bottom_bar,
.accessproof-panel.accessproof-panel-bottom-bar-fixed {
  width: 100vw !important;
  max-width: 100vw !important;
  height: auto !important;
  max-height: none !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  top: auto !important;
}
.accessproof-panel.accessproof-panel-bottom_bar .accessproof-panel-body,
.accessproof-panel.accessproof-panel-bottom-bar-fixed .accessproof-panel-body {
  flex: 0 0 auto !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
}
.accessproof-bottom-bar-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}
.accessproof-bottom-bar-grid > .accessproof-tile {
  width: auto !important;
  min-width: 72px !important;
  max-width: 96px !important;
  min-height: 0 !important;
  height: auto !important;
  flex: 0 0 auto !important;
}

/* Universal accessibility trigger icon (person with arms outstretched) */
.accessproof-trigger.accessproof-trigger-a11y,
.accessproof-trigger.accessproof-trigger-fab.accessproof-trigger-a11y {
  background: transparent !important;
  box-shadow: 0 8px 20px rgba(30, 79, 138, 0.35) !important;
  padding: 0 !important;
  overflow: hidden;
}
.accessproof-trigger .accessproof-icon-img,
.accessproof-trigger [data-ap-icon].accessproof-icon-img {
  display: grid !important;
  place-items: center;
  width: 100%;
  height: 100%;
  line-height: 0;
  font-family: inherit !important;
}
.accessproof-trigger .accessproof-icon-img img,
.accessproof-trigger [data-ap-icon] img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

/* Bottom bar: no title row — tools only */
.accessproof-panel.accessproof-panel-bottom_bar .accessproof-panel-h,
.accessproof-panel.accessproof-panel-bottom-bar-fixed .accessproof-panel-h {
  display: none !important;
}
.accessproof-panel.accessproof-panel-bottom_bar .accessproof-bottom-bar-body,
.accessproof-panel.accessproof-panel-bottom-bar-fixed .accessproof-bottom-bar-body {
  padding: 10px 12px 12px !important;
}
.accessproof-bottom-bar-grid .accessproof-tile-close {
  margin-left: auto !important;
  border-color: #cbd5e1 !important;
  background: #f1f5f9 !important;
}

/* Hide FAB while bottom bar is open — must not cover bar controls */
html.accessproof-panel-open[data-ap-panel="bottom_bar"] .accessproof-trigger-primary {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Bottom bar layout v2 — centered, even tiles, short labels */
.accessproof-panel.accessproof-panel-bottom_bar .accessproof-bottom-bar-body,
.accessproof-panel.accessproof-panel-bottom-bar-fixed .accessproof-bottom-bar-body {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 12px 16px !important;
  overflow: visible !important;
}
.accessproof-panel.accessproof-panel-bottom_bar .accessproof-bottom-bar-grid,
.accessproof-panel.accessproof-panel-bottom-bar-fixed .accessproof-bottom-bar-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 8px !important;
  width: 100% !important;
  max-width: 1320px !important;
  min-width: 0 !important;
  margin: 0 auto !important;
}
.accessproof-panel.accessproof-panel-bottom_bar .accessproof-bottom-bar-grid > .accessproof-tile,
.accessproof-panel.accessproof-panel-bottom-bar-fixed .accessproof-bottom-bar-grid > .accessproof-tile {
  flex: 1 1 0 !important;
  width: auto !important;
  min-width: 76px !important;
  max-width: 108px !important;
  min-height: 64px !important;
  padding: 8px 6px !important;
  gap: 4px !important;
}
.accessproof-panel.accessproof-panel-bottom_bar .accessproof-bottom-bar-grid > .accessproof-tile > span,
.accessproof-panel.accessproof-panel-bottom-bar-fixed .accessproof-bottom-bar-grid > .accessproof-tile > span {
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
  max-width: none !important;
}
.accessproof-panel.accessproof-panel-bottom_bar .accessproof-tile-reset,
.accessproof-panel.accessproof-panel-bottom-bar .accessproof-tile-close,
.accessproof-panel.accessproof-panel-bottom-bar-fixed .accessproof-tile-reset,
.accessproof-panel.accessproof-panel-bottom-bar-fixed .accessproof-tile-close {
  flex: 0 0 auto !important;
  margin-left: 0 !important;
  min-width: 76px !important;
  max-width: 96px !important;
}
@media (max-width: 900px) {
  .accessproof-panel.accessproof-panel-bottom_bar .accessproof-bottom-bar-grid > .accessproof-tile,
  .accessproof-panel.accessproof-panel-bottom-bar-fixed .accessproof-bottom-bar-grid > .accessproof-tile {
    flex: 0 0 auto !important;
    min-width: 70px !important;
    max-width: 92px !important;
  }
  .accessproof-panel.accessproof-panel-bottom_bar .accessproof-bottom-bar-body,
  .accessproof-panel.accessproof-panel-bottom-bar-fixed .accessproof-bottom-bar-body {
    overflow-x: auto !important;
    justify-content: flex-start !important;
  }
  .accessproof-panel.accessproof-panel-bottom_bar .accessproof-bottom-bar-grid,
  .accessproof-panel.accessproof-panel-bottom-bar-fixed .accessproof-bottom-bar-grid {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    width: max-content !important;
    max-width: none !important;
    min-width: 100% !important;
  }
}

/* Bottom bar v3 — sticky close, scroll tools, Profile/Mehr drawers */
.accessproof-panel.accessproof-panel-bottom_bar .accessproof-panel-body,
.accessproof-panel.accessproof-panel-bottom-bar-fixed .accessproof-panel-body {
  padding: 0 !important;
  overflow: visible !important;
  display: block !important;
  width: 100% !important;
}
.accessproof-bottom-bar {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 100vw !important;
  box-sizing: border-box !important;
}
.accessproof-bottom-bar-main {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  width: 100% !important;
  min-width: 0 !important;
  gap: 0 !important;
  padding: 10px 0 10px 12px !important;
  box-sizing: border-box !important;
}
.accessproof-bottom-bar-scroll {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior-x: contain !important;
  outline: none !important;
}
.accessproof-bottom-bar-scroll:focus-visible {
  box-shadow: inset 0 0 0 2px #1e4f8a !important;
}
.accessproof-panel.accessproof-panel-bottom_bar .accessproof-bottom-bar-grid,
.accessproof-panel.accessproof-panel-bottom-bar-fixed .accessproof-bottom-bar-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  gap: 8px !important;
  width: max-content !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding-right: 8px !important;
}
.accessproof-panel.accessproof-panel-bottom_bar .accessproof-bottom-bar-grid > .accessproof-tile,
.accessproof-panel.accessproof-panel-bottom-bar-fixed .accessproof-bottom-bar-grid > .accessproof-tile {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 72px !important;
  max-width: 110px !important;
  min-height: 44px !important;
}
.accessproof-bottom-bar-close {
  flex: 0 0 auto !important;
  position: sticky !important;
  right: 0 !important;
  align-self: stretch !important;
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
  min-width: 52px !important;
  width: 52px !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 8px 6px !important;
  border: 0 !important;
  border-left: 1px solid #e5e7eb !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: -8px 0 12px -8px rgba(13, 16, 35, 0.18) !important;
  color: #0d1023 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  z-index: 2 !important;
}
.accessproof-bottom-bar-close > span[aria-hidden="true"] {
  font-size: 22px !important;
  line-height: 1 !important;
  font-weight: 400 !important;
}
.accessproof-bottom-bar-close-label {
  font-size: 10px !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}
.accessproof-bottom-bar-close:hover,
.accessproof-bottom-bar-close:focus-visible {
  background: #f1f5f9 !important;
  outline: none !important;
}
.accessproof-bottom-bar-close:focus-visible {
  box-shadow: inset 0 0 0 2px #1e4f8a, -8px 0 12px -8px rgba(13, 16, 35, 0.18) !important;
}
.accessproof-bb-drawer {
  border-top: 1px solid #e5e7eb !important;
  background: #f8fafc !important;
  padding: 10px 12px 12px !important;
  max-height: min(40vh, 280px) !important;
  overflow: auto !important;
}
.accessproof-bb-drawer[hidden] {
  display: none !important;
}
.accessproof-bb-drawer-h {
  display: flex !important;
  align-items: baseline !important;
  gap: 6px !important;
  margin: 0 0 8px !important;
  font-size: 12px !important;
}
.accessproof-bb-drawer-h em {
  font-style: normal !important;
  color: #64748b !important;
  font-weight: 600 !important;
}
.accessproof-bb-drawer-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}
.accessproof-bb-drawer-grid .accessproof-tile {
  flex: 0 0 auto !important;
  min-width: 88px !important;
  max-width: 140px !important;
  min-height: 44px !important;
  padding: 8px 10px !important;
}
.accessproof-tile-drawer.is-on {
  background: #1e4f8a !important;
  color: #fff !important;
  border-color: #1e4f8a !important;
}
@media (max-width: 1024px) {
  .accessproof-bottom-bar-main {
    padding: 8px 0 8px 8px !important;
  }
  .accessproof-bottom-bar-close {
    min-width: 48px !important;
    width: 48px !important;
  }
}
@media (max-width: 390px) {
  .accessproof-panel.accessproof-panel-bottom_bar .accessproof-bottom-bar-grid > .accessproof-tile,
  .accessproof-panel.accessproof-panel-bottom-bar-fixed .accessproof-bottom-bar-grid > .accessproof-tile {
    min-width: 64px !important;
    max-width: 88px !important;
    padding: 6px 4px !important;
  }
  .accessproof-bottom-bar-close-label {
    font-size: 9px !important;
  }
}
@media (max-width: 375px) {
  .accessproof-bottom-bar-close { min-width: 48px !important; width: 48px !important; }
}
@media (max-width: 320px) {
  .accessproof-bottom-bar-close { min-width: 44px !important; width: 44px !important; }
  .accessproof-bottom-bar-close-label { display: none !important; }
}
@media (max-width: 768px) {
  .accessproof-bb-drawer { max-height: min(36vh, 240px) !important; }
}
