﻿:root {
    --bg: #edf2f8;
    --bg-strong: #dde8f6;
    --surface: #ffffff;
    --surface-soft: #f7f9fc;
    --surface-strong: #0f172a;
    --surface-tint: #f3f7ff;
    --text: #172033;
    --text-strong: #0f172a;
    --muted: #62738f;
    --text-muted: var(--muted);
    --ink-800: #23324a;
    --line: #d7e0ed;
    --line-strong: #c4d1e4;
    --accent: #1f5eff;
    --accent-strong: #174ac9;
    --accent-soft: #e7efff;
    --accent-ink: #1744b3;
    --accent-soft-strong: rgba(31, 94, 255, 0.16);
    --warning: #f59e0b;
    --warning-soft: rgba(245, 158, 11, 0.18);
    --danger: #dc2626;
    --danger-soft: rgba(220, 38, 38, 0.16);
    --success: #059669;
    --success-soft: rgba(5, 150, 105, 0.18);
    --shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 14px 34px rgba(15, 23, 42, 0.06);
    --radius: 22px;
    --sidebar-width: 264px;
    --sidebar-width-mobile: min(86vw, 320px);
    --content-max: 1520px;
    --font-sans: "Aptos", "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
    --font-display: "Aptos Display", "Aptos", "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
    color-scheme: light;
    font-family: var(--font-sans);
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-160%);
    border-radius: 7px;
    padding: 9px 13px;
    background: #ffffff;
    color: #003399;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}

.skip-link:focus {
    transform: translateY(0);
    outline: 3px solid rgba(0, 51, 153, 0.28);
    outline-offset: 2px;
}

.flash-stack-overlay {
    position: fixed;
    top: max(18px, env(safe-area-inset-top));
    right: max(18px, env(safe-area-inset-right));
    z-index: 1400;
    display: grid;
    width: min(430px, calc(100vw - 36px));
    margin: 0;
    gap: 10px;
    pointer-events: none;
    animation: system-toast-enter 180ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.flash-stack-overlay.is-leaving {
    animation: system-toast-leave 180ms ease-in both;
}

.flash-message {
    position: relative;
    display: flex;
    min-height: 56px;
    align-items: center;
    overflow-wrap: anywhere;
    padding: 14px 18px 14px 46px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--text-strong);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(14px);
}

.flash-message::before {
    position: absolute;
    left: 20px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 5px var(--accent-soft);
    content: "";
}

.flash-success {
    border-color: rgba(5, 150, 105, 0.28);
}

.flash-success::before {
    background: var(--success);
    box-shadow: 0 0 0 5px var(--success-soft);
}

.flash-warning {
    border-color: rgba(245, 158, 11, 0.32);
}

.flash-warning::before {
    background: var(--warning);
    box-shadow: 0 0 0 5px var(--warning-soft);
}

.flash-error {
    border-color: rgba(220, 38, 38, 0.3);
}

.flash-error::before {
    background: var(--danger);
    box-shadow: 0 0 0 5px var(--danger-soft);
}

@keyframes system-toast-enter {
    from {
        opacity: 0;
        transform: translate3d(0, -12px, 0) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes system-toast-leave {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        opacity: 0;
        transform: translate3d(0, -8px, 0) scale(0.98);
    }
}

@media (max-width: 600px) {
    .flash-stack-overlay {
        top: max(12px, env(safe-area-inset-top));
        right: 16px;
        left: 16px;
        width: auto;
    }

    .flash-message {
        min-height: 54px;
        padding: 13px 16px 13px 44px;
        font-size: 16px;
    }

    .flash-message::before {
        left: 18px;
    }
}

/* AXA RDO demo visual alignment */
.auth-body[data-route="customer/demo-link"],
.auth-body[data-route="customer/demo-login"],
.auth-body[data-route="customer/demo-register"],
.auth-body[data-route="customer/demo-confirm-email"],
.auth-body[data-route="admin/axa-demo"],
.auth-body[data-route="admin/axa-demo-session"],
.auth-body[data-route="admin/axa-demo-access"],
.auth-body[data-route="admin/axa-demo-login"] {
    display: block;
    place-items: initial;
    padding: 0;
    background: #edf3fa;
    color: #071333;
}

.auth-body[data-route="customer/demo-link"] .auth-shell,
.auth-body[data-route="customer/demo-login"] .auth-shell,
.auth-body[data-route="customer/demo-register"] .auth-shell,
.auth-body[data-route="customer/demo-confirm-email"] .auth-shell,
.auth-body[data-route="admin/axa-demo"] .auth-shell,
.auth-body[data-route="admin/axa-demo-session"] .auth-shell,
.auth-body[data-route="admin/axa-demo-access"] .auth-shell,
.auth-body[data-route="admin/axa-demo-login"] .auth-shell {
    width: 100%;
}

.auth-body[data-route="customer/demo-link"] .site-footer,
.auth-body[data-route="customer/demo-login"] .site-footer,
.auth-body[data-route="customer/demo-register"] .site-footer,
.auth-body[data-route="customer/demo-confirm-email"] .site-footer,
.auth-body[data-route="admin/axa-demo"] .site-footer,
.auth-body[data-route="admin/axa-demo-session"] .site-footer,
.auth-body[data-route="admin/axa-demo-access"] .site-footer,
.auth-body[data-route="admin/axa-demo-login"] .site-footer {
    display: none;
}

.axa-demo-customer-shell,
.axa-demo-welcome-shell,
.axa-demo-app,
.axa-demo-login {
    --axa-blue: #003399;
    --axa-blue-dark: #001f6f;
    --axa-blue-900: #001a56;
    --axa-red: #ff172f;
    --axa-text: #071333;
    --axa-muted: #66728a;
    --axa-line: #d9e2ef;
    --axa-soft: #f5f8fc;
    --axa-green: #148a45;
    --axa-orange: #f97316;
    --axa-purple: #7c3cff;
    --axa-radius: 12px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

.axa-demo-customer-shell *,
.axa-demo-welcome-shell *,
.axa-demo-app *,
.axa-demo-login * {
    box-sizing: border-box;
}

.axa-demo-customer-shell svg,
.axa-demo-welcome-shell svg,
.axa-demo-app svg,
.axa-demo-login svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.axa-demo-logo-mark {
    display: block;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--axa-blue);
    box-shadow: 0 10px 18px rgba(0, 26, 86, 0.16);
    object-fit: cover;
}

.axa-demo-brand-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.axa-demo-login {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 0, rgba(0, 51, 153, 0.12), transparent 32%),
        linear-gradient(135deg, #f8fbff 0%, #edf3fa 52%, #e8eef8 100%);
    color: var(--axa-text);
}

.axa-demo-login-topbar {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 32px;
    border-bottom: 1px solid var(--axa-line);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
}

.axa-demo-login-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--axa-blue-900);
    font-size: 22px;
    font-weight: 850;
    text-decoration: none;
}

.axa-demo-login-brand i {
    display: block;
    width: 10px;
    height: 34px;
    transform: skew(-28deg);
    background: var(--axa-red);
}

.axa-demo-login-customer {
    color: var(--axa-blue);
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.axa-demo-login-grid {
    display: grid;
    grid-template-columns: minmax(360px, 460px) minmax(360px, 500px);
    gap: 28px;
    width: min(1020px, calc(100% - 48px));
    margin: 42px auto;
    align-items: start;
}

.axa-demo-login.is-operator-auth .axa-demo-login-grid,
.axa-demo-login.is-customer-auth-flow .axa-demo-login-grid {
    grid-template-columns: minmax(320px, 460px);
    width: min(460px, calc(100% - 48px));
}

.axa-demo-login-card,
.axa-demo-login-preview {
    border: 1px solid var(--axa-line);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 20px 48px rgba(7, 19, 51, 0.10);
}

.axa-demo-login-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 32px;
}

.axa-demo-login-kicker {
    width: max-content;
    border-radius: 999px;
    padding: 7px 12px;
    background: #e8efff;
    color: var(--axa-blue);
    font-size: 12px;
    font-weight: 800;
}

.axa-demo-login-card h1 {
    margin: 0;
    color: var(--axa-blue-900);
    font-size: 32px;
    line-height: 1.08;
}

.axa-demo-login-card p {
    margin: 0 0 4px;
    color: #4c5a72;
    font-size: 15px;
    line-height: 1.55;
}

.axa-demo-login-field {
    display: grid;
    gap: 8px;
    color: #36445d;
    font-size: 13px;
    font-weight: 750;
}

.axa-demo-login-field input {
    width: 100%;
    height: 48px;
    border: 1px solid #cbd7e8;
    border-radius: 10px;
    padding: 0 14px;
    color: var(--axa-text);
    font: inherit;
    font-weight: 650;
    outline: none;
    background: #fbfdff;
}

.axa-demo-login-field input:focus {
    border-color: var(--axa-blue);
    box-shadow: 0 0 0 4px rgba(0, 51, 153, 0.12);
    background: #ffffff;
}

.axa-demo-login-error {
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 12px 14px;
    background: #fff1f2;
    color: #a31227;
    font-size: 13px;
    font-weight: 750;
}

.axa-demo-login-notice {
    border: 1px solid rgba(20, 138, 69, 0.24);
    border-radius: 10px;
    padding: 12px 14px;
    background: #eefaf2;
    color: #0f6a36;
    font-size: 13px;
    font-weight: 750;
}

.axa-demo-login-submit {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 10px;
    padding: 0 18px;
    background: linear-gradient(135deg, var(--axa-blue), #0f4ce8);
    color: #ffffff;
    font: inherit;
    font-weight: 850;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(0, 51, 153, 0.22);
}

.axa-demo-login-submit svg {
    width: 19px;
    height: 19px;
}

.axa-demo-login-secondary-cta {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid #b8c8e6;
    border-radius: 10px;
    padding: 0 18px;
    background: #f7faff;
    color: var(--axa-blue);
    font: inherit;
    font-weight: 850;
    text-decoration: none;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.axa-demo-login-secondary-cta:hover {
    border-color: var(--axa-blue);
    background: #eef4ff;
}

.axa-demo-login-secondary-cta:focus-visible {
    outline: 3px solid rgba(0, 51, 153, 0.20);
    outline-offset: 2px;
}

.axa-demo-login-secondary-cta:active {
    transform: translateY(1px);
}

.axa-demo-login-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: #6c7890;
    font-size: 12px;
    font-weight: 700;
}

.axa-demo-login-meta.is-centered {
    justify-content: center;
}

.axa-demo-login-meta a {
    color: var(--axa-blue);
    text-decoration: none;
}

.axa-demo-register-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.axa-demo-resend-form {
    display: grid;
    gap: 12px;
    margin-top: 4px;
}

.axa-demo-resend-form .axa-demo-secondary {
    min-height: 44px;
    border-radius: 8px;
    font: inherit;
    font-weight: 800;
}

.axa-demo-login-disclosure {
    display: grid;
    gap: 10px;
    margin-top: 8px;
    border: 1px solid #dbe5f4;
    border-radius: 10px;
    background: #ffffff;
}

.axa-demo-login-disclosure > summary {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 12px;
    color: #0a2a66;
    cursor: pointer;
    font-size: 13px;
    font-weight: 850;
    list-style: none;
}

.axa-demo-login-disclosure > summary::-webkit-details-marker {
    display: none;
}

.axa-demo-login-disclosure > summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 160ms ease;
}

.axa-demo-login-disclosure[open] > summary::after {
    transform: rotate(225deg) translate(-2px, -2px);
}

.axa-demo-login-disclosure > summary:focus-visible {
    outline: 3px solid rgba(0, 51, 153, 0.18);
    outline-offset: 2px;
}

.axa-demo-login-disclosure .axa-demo-resend-form {
    margin: 0;
    padding: 0 12px 12px;
}

.axa-demo-login-preview {
    position: relative;
    display: grid;
    align-content: center;
    gap: 14px;
    overflow: hidden;
    padding: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.96)),
        #ffffff;
}

.axa-demo-login-preview::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 116px;
    background: linear-gradient(180deg, var(--axa-blue), #00215f);
}

.axa-demo-login-preview > * {
    position: relative;
    margin-left: 126px;
}

.axa-demo-login.is-customer-auth-flow .axa-demo-login-preview {
    justify-items: center;
}

.axa-demo-login.is-customer-auth-flow .axa-demo-login-preview::before {
    display: none;
}

.axa-demo-login.is-customer-auth-flow .axa-demo-login-preview > * {
    width: min(100%, 300px);
    margin-left: 0;
}

.axa-demo-login-preview-head,
.axa-demo-login-preview-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.axa-demo-login-preview-head span {
    color: var(--axa-blue-900);
    font-size: 24px;
    font-weight: 850;
}

.axa-demo-login-preview-head strong {
    position: relative;
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    border-radius: 999px;
    background: conic-gradient(var(--axa-blue) 78%, #dce6f5 0);
    color: var(--axa-blue-900);
    font-size: 19px;
    isolation: isolate;
}

.axa-demo-login-preview-head strong::before {
    content: "";
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: #ffffff;
}

.axa-demo-login-preview-head strong {
    color: transparent;
}

.axa-demo-login-preview-head strong::after {
    content: "78%";
    position: absolute;
    color: var(--axa-blue-900);
    font-size: 19px;
    font-weight: 850;
}

.axa-demo-login-preview-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.axa-demo-login-preview-kpis div,
.axa-demo-login-preview-panel {
    border: 1px solid var(--axa-line);
    border-radius: 12px;
    background: #ffffff;
}

.axa-demo-login-preview-kpis div {
    padding: 14px;
}

.axa-demo-login-preview-kpis span,
.axa-demo-login-preview-panel span {
    display: block;
    color: #66728a;
    font-size: 12px;
    font-weight: 750;
}

.axa-demo-login-preview-kpis strong,
.axa-demo-login-preview-panel strong {
    display: block;
    margin-top: 8px;
    color: var(--axa-blue-900);
    font-size: 25px;
}

.axa-demo-login-preview-panel {
    padding: 16px;
}

.axa-demo-login-preview-panel em {
    border-radius: 8px;
    padding: 7px 10px;
    background: #dff7e8;
    color: var(--axa-green);
    font-size: 12px;
    font-style: normal;
    font-weight: 850;
}

.axa-demo-login-preview-photos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 0;
}

.axa-demo-login-preview-photos span {
    min-height: 96px;
    border-radius: 10px;
    background-image: var(--axa-photo-sheet, url("../img/axa-demo/property-evidence-sheet-weather.png"));
    background-repeat: no-repeat;
    background-size: 300% 200%;
    box-shadow: inset 0 -32px 28px rgba(7, 19, 51, 0.20);
}

.axa-demo-login-preview-photos span:nth-child(1) {
    background-position: 0 0;
}

.axa-demo-login-preview-photos span:nth-child(2) {
    background-position: 50% 0;
}

.axa-demo-login-preview-photos span:nth-child(3) {
    background-position: 100% 0;
}

.axa-demo-login-preview-photos span:nth-child(4) {
    background-position: 0 100%;
}

.axa-demo-login-preview-chart {
    border: 1px solid var(--axa-line);
    border-radius: 12px;
    padding: 18px;
    background: #ffffff;
}

.axa-demo-login-preview-chart svg {
    display: block;
    width: 100%;
    height: 90px;
}

.axa-demo-login-preview-chart path {
    fill: none;
    stroke: #7c68ff;
    stroke-width: 5;
}

.axa-demo-customer-shell {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 12px;
    background:
        radial-gradient(circle at top left, rgba(0, 51, 153, 0.10), transparent 36%),
        #edf3fa;
}

.axa-demo-customer-phone {
    width: min(390px, 100%);
    min-height: calc(100vh - 24px);
    overflow: hidden;
    border: 1px solid var(--axa-line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(7, 19, 51, 0.12);
}

.axa-demo-customer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.axa-demo-customer-head {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 58px;
    padding: 0 22px;
    border-bottom: 1px solid var(--axa-line);
    background: #ffffff;
}

.axa-demo-customer-head a {
    min-width: 0;
    overflow: hidden;
    color: var(--axa-blue-900);
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.axa-demo-customer-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.axa-demo-customer-head .axa-demo-logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 7px;
}

.axa-demo-head-actions {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.axa-demo-customer-head button,
.axa-demo-mobile-menu,
.axa-demo-icon-button,
.axa-demo-operator-button {
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
}

.axa-demo-voice-button {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    gap: 6px;
    border: 1px solid #cbd7e8;
    border-radius: 999px;
    padding: 0 9px;
    background: #ffffff;
    color: var(--axa-blue);
    font-size: 12px;
    font-weight: 850;
    cursor: pointer;
}

.axa-demo-voice-button svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.axa-demo-voice-button[aria-busy="true"] {
    border-color: rgba(0, 51, 153, 0.34);
    background: #edf4ff;
}

.axa-demo-voice-button:focus-visible {
    outline: 3px solid rgba(0, 51, 153, 0.22);
    outline-offset: 2px;
}

.axa-demo-voice-dock {
    padding: 10px 0 0;
}

.axa-demo-voice-dock[hidden] {
    display: none;
}

.axa-demo-customer-phone > .axa-demo-voice-dock {
    padding: 0 22px 22px;
}

.axa-demo-voice-dock .axa-demo-voice-button {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    border-radius: 10px;
    background: #f3f7ff;
}

.axa-demo-mobile-menu span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.axa-demo-customer-reset-form {
    margin: 0;
}

.axa-demo-photo-toast {
    position: fixed;
    z-index: 80;
    top: max(14px, env(safe-area-inset-top));
    left: 50%;
    width: min(calc(100vw - 28px), 340px);
    transform: translate(-50%, -8px);
    border: 1px solid #b8dfcf;
    border-radius: 12px;
    padding: 12px 14px;
    background: #f0fbf6;
    box-shadow: 0 16px 34px rgba(7, 19, 51, 0.14);
    color: #0f5132;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
}

.axa-demo-photo-toast[hidden] {
    display: none;
}

.axa-demo-photo-toast.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
}

.axa-demo-photo-toast strong,
.axa-demo-photo-toast span {
    display: block;
}

.axa-demo-photo-toast strong {
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
}

.axa-demo-photo-toast span {
    margin-top: 3px;
    color: #2f6b4f;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.axa-demo-ai-wait-modal {
    --axa-demo-visual-viewport-height: 100dvh;
    --axa-demo-visual-viewport-offset-top: 0px;
    position: fixed;
    top: var(--axa-demo-visual-viewport-offset-top);
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 90;
    display: grid;
    height: 100vh;
    height: var(--axa-demo-visual-viewport-height);
    max-height: 100vh;
    max-height: var(--axa-demo-visual-viewport-height);
    box-sizing: border-box;
    place-items: center;
    padding: 22px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.axa-demo-ai-wait-modal[hidden] {
    display: none;
}

.axa-demo-ai-wait-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.axa-demo-ai-wait-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 19, 51, 0.42);
    backdrop-filter: blur(4px);
}

.axa-demo-ai-wait-dialog {
    position: relative;
    display: grid;
    width: min(100%, 358px);
    max-height: calc(100% - 38px);
    min-height: 0;
    gap: 13px;
    border: 1px solid rgba(181, 191, 210, 0.82);
    border-radius: 12px;
    padding: 18px;
    background: #ffffff;
    box-shadow: 0 24px 58px rgba(7, 19, 51, 0.24);
    color: #071333;
    outline: none;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.axa-demo-ai-wait-close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: #eef3fa;
    color: #263653;
    cursor: pointer;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.axa-demo-ai-wait-close:hover {
    background: #dfe9f7;
    color: var(--axa-blue);
}

.axa-demo-ai-wait-close:focus-visible {
    outline: 3px solid rgba(0, 51, 153, 0.24);
    outline-offset: 2px;
}

.axa-demo-ai-wait-close:active {
    transform: scale(0.96);
}

.axa-demo-ai-wait-close[hidden] {
    display: none !important;
}

.axa-demo-ai-wait-icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 999px;
    background: #edf5ff;
}

.axa-demo-ai-wait-icon::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 51, 153, 0.24);
    border-top-color: var(--axa-blue);
    border-radius: 999px;
    animation: axa-demo-spin 800ms linear infinite;
}

.axa-demo-ai-wait-modal[data-state="success"] .axa-demo-ai-wait-icon {
    background: #eaf8f0;
}

.axa-demo-ai-wait-modal[data-state="success"] .axa-demo-ai-wait-icon::before {
    width: 15px;
    height: 9px;
    border: 0;
    border-bottom: 3px solid var(--axa-green);
    border-left: 3px solid var(--axa-green);
    border-radius: 0;
    animation: none;
    transform: rotate(-45deg) translate(1px, -1px);
}

.axa-demo-ai-wait-copy {
    display: grid;
    gap: 6px;
}

.axa-demo-ai-wait-copy strong {
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
}

.axa-demo-ai-wait-copy p,
.axa-demo-ai-wait-copy small {
    margin: 0;
    color: #526078;
    line-height: 1.42;
}

.axa-demo-ai-wait-copy p {
    font-size: 13px;
    font-weight: 750;
}

.axa-demo-ai-wait-copy small {
    font-size: 12px;
    font-weight: 700;
}

.axa-demo-ai-wait-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.axa-demo-ai-wait-actions [hidden] {
    display: none !important;
}

.axa-demo-ai-wait-dialog [hidden] {
    display: none !important;
}

.axa-demo-ai-wait-actions .axa-demo-primary,
.axa-demo-ai-wait-actions .axa-demo-secondary {
    flex: 1 1 130px;
    min-height: 42px;
    justify-content: center;
}

.axa-demo-final-transmission-list[hidden] {
    display: none !important;
}

.axa-demo-ai-wait-dialog .axa-demo-final-transmission-list {
    margin: 2px 0 0;
}

.axa-demo-screen {
    padding: 18px 22px 26px;
}

.axa-demo-screen[hidden],
.axa-demo-photo-step[hidden] {
    display: none !important;
}

.axa-demo-customer-copy h1,
.axa-demo-photo-step h2,
.axa-demo-done-card h1 {
    margin: 0;
    color: #071333;
    font-size: 18px;
    line-height: 1.22;
    font-weight: 850;
}

.axa-demo-customer-copy p,
.axa-demo-photo-step p,
.axa-demo-done-card p {
    margin: 8px 0 0;
    color: #394765;
    font-size: 14px;
    line-height: 1.45;
}

.axa-demo-claim-summary-card,
.axa-demo-customer-info-card,
.axa-demo-photo-step,
.axa-demo-done-card {
    margin-top: 16px;
    border: 1px solid var(--axa-line);
    border-radius: var(--axa-radius);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(7, 19, 51, 0.04);
}

.axa-demo-claim-summary-card {
    padding: 14px 16px;
}

.axa-demo-claim-summary-card > span,
.axa-demo-customer-info-card > strong,
.axa-demo-preview-block > span {
    display: block;
    color: #4d5a75;
    font-size: 12px;
    font-weight: 650;
}

.axa-demo-claim-summary-card > strong {
    display: block;
    margin-top: 8px;
    color: #071333;
    font-size: 18px;
    font-weight: 850;
}

.axa-demo-claim-summary-card dl,
.axa-demo-customer-info-card dl,
.axa-demo-done-card dl {
    display: grid;
    gap: 14px;
    margin: 18px 0 0;
}

.axa-demo-claim-summary-card dt,
.axa-demo-customer-info-card dt {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 3px;
    color: #4d5a75;
    font-size: 12px;
    font-weight: 650;
}

.axa-demo-claim-summary-card dd,
.axa-demo-customer-info-card dd,
.axa-demo-done-card dd {
    margin: 0;
    color: #071333;
    font-size: 14px;
    font-weight: 800;
}

.axa-demo-package-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
}

.axa-demo-package-summary div {
    min-width: 0;
    border: 1px solid #dbe5f4;
    border-radius: 10px;
    padding: 10px;
    background: #f8fbff;
}

.axa-demo-package-summary strong {
    display: block;
    color: var(--axa-blue-900);
    font-size: 15px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.axa-demo-package-summary span {
    display: block;
    margin-top: 3px;
    color: #536179;
    font-size: 10px;
    font-weight: 750;
    line-height: 1.2;
}

.axa-demo-stepper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(7, minmax(36px, 1fr));
    gap: 2px;
    margin: 16px 0 20px;
    padding: 0;
    list-style: none;
}

.axa-demo-stepper::before {
    content: "";
    position: absolute;
    top: 12px;
    right: 32px;
    left: 32px;
    height: 2px;
    background: #d7deea;
}

.axa-demo-stepper li {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 7px;
    color: #66728a;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
}

.axa-demo-stepper strong {
    z-index: 1;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 999px;
    background: #aab3c2;
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
}

.axa-demo-stepper .is-complete strong {
    background: var(--axa-green);
}

.axa-demo-stepper .is-active strong {
    background: var(--axa-blue);
}

.axa-demo-stepper .is-active {
    color: var(--axa-blue-900);
}

.axa-demo-upload-drop {
    display: grid;
    justify-items: center;
    gap: 7px;
    margin-top: 12px;
    padding: 20px 12px;
    border: 1.5px dashed #aeb9c9;
    border-radius: 10px;
    color: #071333;
    text-align: center;
}

.axa-demo-upload-drop svg {
    width: 30px;
    height: 30px;
    color: #657087;
}

.axa-demo-upload-drop strong {
    font-size: 14px;
    font-weight: 850;
}

.axa-demo-upload-drop span {
    color: #536179;
    font-size: 12px;
}

.axa-demo-screen-note {
    color: var(--axa-blue);
    font-size: 11px;
    font-weight: 850;
}

.axa-demo-preview-block {
    margin-top: 12px;
}

.axa-demo-evidence-photo {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 8px;
    background-image: var(--axa-photo-sheet);
    background-repeat: no-repeat;
    background-size: 300% 200%;
    box-shadow: inset 0 0 0 1px rgba(7, 19, 51, 0.06);
}

.axa-demo-preview-block .axa-demo-evidence-photo {
    width: 145px;
    height: 98px;
    margin-top: 8px;
}

.axa-demo-evidence-photo.is-room,
.axa-demo-evidence-photo.is-1,
.axa-demo-preview[data-axa-photo-preview="room_overview"] .axa-demo-preview-visual {
    background-position: 0% 0%;
}

.axa-demo-evidence-photo.is-2,
.axa-demo-preview[data-axa-photo-preview="main_damage_detail"] .axa-demo-preview-visual {
    background-position: 50% 0%;
}

.axa-demo-evidence-photo.is-3,
.axa-demo-preview[data-axa-photo-preview="origin_point"] .axa-demo-preview-visual {
    background-position: 100% 0%;
}

.axa-demo-evidence-photo.is-4,
.axa-demo-preview[data-axa-photo-preview="affected_surfaces"] .axa-demo-preview-visual {
    background-position: 0% 100%;
}

.axa-demo-evidence-photo.is-5,
.axa-demo-preview[data-axa-photo-preview="damaged_goods"] .axa-demo-preview-visual {
    background-position: 50% 100%;
}

.axa-demo-evidence-photo button {
    position: absolute;
    top: 6px;
    right: 6px;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: #1b2540;
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
}

.axa-demo-customer-info-card {
    padding: 14px;
}

.axa-demo-primary-cta,
.axa-demo-primary,
.axa-demo-secondary,
.axa-demo-upload-actions label,
.axa-demo-upload-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.axa-demo-primary-cta {
    width: 100%;
    gap: 12px;
    margin-top: 14px;
    border: 0;
    background: linear-gradient(135deg, #0b4bdb 0%, #002baf 100%);
    color: #ffffff;
    box-shadow: 0 12px 22px rgba(0, 51, 153, 0.22);
}

.axa-demo-primary-cta svg {
    margin-left: auto;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.axa-demo-reset-cta {
    margin-top: 0;
    background: linear-gradient(135deg, #f08a24 0%, #d65f12 100%);
    box-shadow: 0 12px 22px rgba(214, 95, 18, 0.22);
}

.axa-demo-reset-cta:focus-visible {
    outline: 3px solid rgba(214, 95, 18, 0.26);
    outline-offset: 2px;
}

.axa-demo-welcome-shell {
    --axa-blue: #003399;
    --axa-blue-dark: #001f6f;
    --axa-red: #ff172f;
    --axa-text: #071333;
    --axa-muted: #66728a;
    --axa-line: #d9e2ef;
    min-height: min(760px, calc(100vh - 40px));
    display: grid;
    place-items: center;
    padding: 28px 16px;
    background:
        linear-gradient(135deg, rgba(0, 51, 153, 0.08), rgba(255, 23, 47, 0.06)),
        #f6f8fc;
}

.axa-demo-welcome-panel {
    width: min(100%, 520px);
    display: grid;
    gap: 22px;
    justify-items: center;
    border: 1px solid rgba(0, 51, 153, 0.12);
    border-radius: 8px;
    padding: clamp(28px, 6vw, 44px);
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(7, 19, 51, 0.14);
    text-align: center;
}

.axa-demo-welcome-brand {
    width: 118px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}

.axa-demo-welcome-logo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.axa-demo-welcome-copy h1 {
    margin: 0;
    color: var(--axa-blue-dark);
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 850;
    line-height: 1.18;
    letter-spacing: 0;
}

.axa-demo-welcome-user {
    margin: 10px 0 0;
    color: var(--axa-muted);
    font-size: 14px;
    font-weight: 750;
}

.axa-demo-welcome-actions {
    width: 100%;
    display: grid;
    gap: 10px;
}

.axa-demo-welcome-actions .axa-demo-primary-cta {
    margin-top: 0;
}

.axa-demo-welcome-actions .axa-demo-primary-cta:disabled {
    cursor: not-allowed;
    background: #9aa9c2;
    box-shadow: none;
}

.axa-demo-welcome-actions[hidden] {
    display: none !important;
}

.axa-demo-welcome-counter,
.axa-demo-welcome-status,
.axa-demo-session-link-panel small {
    margin: 0;
    color: var(--axa-muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.axa-demo-welcome-status {
    width: 100%;
    border: 1px solid rgba(0, 51, 153, 0.12);
    border-radius: 8px;
    padding: 10px 12px;
    background: #f3f7ff;
    color: var(--axa-blue-dark);
}

.axa-demo-welcome-status[hidden] {
    display: none !important;
}

.axa-demo-welcome-status[data-state="success"] {
    border-color: rgba(20, 138, 69, 0.24);
    background: #eefaf2;
    color: #0f6a36;
}

.axa-demo-welcome-status[data-state="warning"],
.axa-demo-welcome-status[data-state="error"] {
    border-color: rgba(249, 115, 22, 0.28);
    background: #fff7ed;
    color: #9a3412;
}

.axa-demo-welcome-status[data-state="loading"] {
    border-color: rgba(0, 51, 153, 0.24);
    background: #edf4ff;
    color: var(--axa-blue);
}

.axa-demo-session-link-panel {
    width: 100%;
    display: grid;
    gap: 12px;
    border-top: 1px solid var(--axa-line);
    padding-top: 18px;
}

.axa-demo-session-link-panel[hidden] {
    display: none !important;
}

.axa-demo-session-link-field {
    display: grid;
    gap: 8px;
    color: var(--axa-text);
    font-size: 13px;
    font-weight: 800;
    text-align: left;
}

.axa-demo-session-link-field input {
    width: 100%;
    border: 1px solid var(--axa-line);
    border-radius: 8px;
    padding: 12px;
    background: #f8fbff;
    color: var(--axa-text);
    font: inherit;
    font-weight: 700;
}

.axa-demo-session-link-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.axa-demo-welcome-secondary-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    border-top: 1px solid var(--axa-line);
    padding-top: 16px;
}

.axa-demo-primary {
    border: 0;
    padding: 0 18px;
    background: var(--axa-blue);
    color: #ffffff;
}

.axa-demo-primary:disabled {
    cursor: not-allowed;
    background: #9fb0cc;
    color: #edf3ff;
    box-shadow: none;
}

.axa-demo-secondary {
    border: 1px solid #cbd7e8;
    padding: 0 18px;
    background: #f3f7ff;
    color: var(--axa-blue);
}

.axa-demo-sync-state {
    margin: 8px 0 0;
    color: #536179;
    font-size: 12px;
    text-align: center;
}

.axa-demo-sync-state[data-state="saving"] {
    color: var(--axa-blue);
}

.axa-demo-sync-state[data-state="saved"] {
    color: var(--axa-green);
}

.axa-demo-sync-state[data-state="warning"],
.axa-demo-sync-state[data-state="error"],
.axa-demo-sync-state[data-state="fallback"] {
    color: var(--axa-orange);
}

.axa-demo-field {
    position: relative;
    display: grid;
    gap: 7px;
    margin-top: 14px;
    color: #1d2a44;
    font-size: 13px;
    font-weight: 750;
}

.axa-demo-field small {
    color: #66728a;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.axa-demo-field input,
.axa-demo-field select,
.axa-demo-field textarea {
    width: 100%;
    border: 1px solid var(--axa-line);
    border-radius: 10px;
    padding: 11px 12px;
    background: #ffffff;
    color: #071333;
    font: inherit;
    font-weight: 600;
}

.axa-demo-field input.axa-demo-file-native {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.axa-demo-file-picker-ui {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    border: 1px solid var(--axa-line);
    border-radius: 10px;
    padding: 9px 10px;
    background: #ffffff;
    color: #071333;
    cursor: pointer;
}

.axa-demo-file-picker-ui > span {
    border-radius: 8px;
    padding: 8px 10px;
    background: #edf4ff;
    color: var(--axa-blue);
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.axa-demo-file-picker-ui > strong {
    min-width: 0;
    color: #536179;
    font-size: 12px;
    font-weight: 750;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.axa-demo-field:focus-within .axa-demo-file-picker-ui {
    border-color: rgba(0, 51, 153, 0.45);
    box-shadow: 0 0 0 3px rgba(0, 51, 153, 0.12);
}

.axa-demo-type-grid {
    display: grid;
    gap: 9px;
    margin-top: 16px;
}

.axa-demo-type-grid button {
    border: 1px solid var(--axa-line);
    border-radius: 10px;
    padding: 12px;
    background: #ffffff;
    color: #071333;
    font-weight: 750;
    text-align: left;
}

.axa-demo-type-grid button.is-selected {
    border-color: rgba(0, 51, 153, 0.35);
    background: #edf4ff;
    color: var(--axa-blue);
}

.axa-demo-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.axa-demo-button-row > * {
    flex: 1 1 130px;
}

.axa-demo-button-row [hidden] {
    display: none !important;
}

.axa-demo-button-row .axa-demo-voice-dock {
    flex: 1 1 100%;
    padding: 0;
}

.axa-demo-button-row .axa-demo-customer-reset-form {
    flex: 1 1 100%;
    width: 100%;
}

.axa-demo-button-row .axa-demo-customer-reset-form .axa-demo-reset-cta {
    width: 100%;
}

.axa-demo-intro-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 8px 10px;
}

.axa-demo-intro-actions .axa-demo-primary-cta {
    order: 1;
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    min-height: 44px;
    height: 44px;
    margin-top: 0;
}

.axa-demo-intro-actions .axa-demo-intro-reset-form {
    order: 3;
    grid-column: 1 / -1;
    grid-row: 3;
    flex: none;
    width: 100%;
}

.axa-demo-intro-actions .axa-demo-intro-reset-form .axa-demo-reset-cta {
    width: 100%;
    min-height: 44px;
    height: 44px;
}

.axa-demo-intro-actions .axa-demo-voice-dock {
    order: 2;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    padding: 0;
}

.axa-demo-intro-actions .axa-demo-voice-button {
    width: 100%;
    min-height: 44px;
    height: 44px;
    padding-right: 8px;
    padding-left: 8px;
}

.axa-demo-consent-panel,
.axa-demo-gps-panel,
.axa-demo-denuncia-card,
.axa-demo-safety-card,
.axa-demo-ai-placeholder,
.axa-demo-progress-card {
    margin-top: 16px;
    border: 1px solid var(--axa-line);
    border-radius: var(--axa-radius);
    background: #ffffff;
    padding: 14px;
    box-shadow: 0 8px 20px rgba(7, 19, 51, 0.04);
}

.axa-demo-consent-panel {
    display: grid;
    gap: 8px;
}

.axa-demo-disclosure {
    min-width: 0;
    border: 1px solid #dbe5f4;
    border-radius: 10px;
    background: #f8fbff;
}

.axa-demo-disclosure > summary {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 12px;
    color: #173a5e;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    list-style: none;
}

.axa-demo-disclosure > summary::-webkit-details-marker {
    display: none;
}

.axa-demo-disclosure > summary::after {
    content: "";
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 160ms ease;
}

.axa-demo-disclosure[open] > summary {
    border-bottom: 1px solid rgba(219, 229, 244, 0.9);
}

.axa-demo-disclosure[open] > summary::after {
    transform: rotate(225deg) translate(-2px, -2px);
}

.axa-demo-disclosure > summary:focus-visible {
    border-radius: 9px;
    outline: 3px solid rgba(0, 51, 153, 0.18);
    outline-offset: 2px;
}

.axa-demo-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px;
    border: 1px solid #e3ebf7;
    border-radius: 10px;
    background: #f9fbff;
}

.axa-demo-consent-copy {
    display: grid;
    min-width: 0;
    gap: 6px;
}

.axa-demo-consent-copy label {
    cursor: pointer;
}

.axa-demo-consent-details {
    background: #ffffff;
}

.axa-demo-consent-details > summary {
    min-height: 34px;
    padding: 0 9px;
    color: var(--axa-blue);
    font-size: 11.5px;
}

.axa-demo-consent-details small {
    margin: 0;
    padding: 8px 9px 9px;
}

.axa-demo-consent-email-field {
    margin-top: 2px;
    padding: 10px;
    border: 1px solid #dbe5f4;
    border-radius: 10px;
    background: #ffffff;
}

.axa-demo-consent-email-field input[aria-invalid="true"] {
    border-color: #d92d20;
    box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.10);
}

.axa-demo-consent-email-field [data-axa-privacy-email-error] {
    color: #b42318;
    font-weight: 750;
}

.axa-demo-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--axa-blue);
}

.axa-demo-consent strong,
.axa-demo-denuncia-card strong,
.axa-demo-ai-placeholder strong {
    display: block;
    color: #071333;
    font-size: 13px;
    font-weight: 850;
}

.axa-demo-consent small,
.axa-demo-denuncia-card p,
.axa-demo-ai-placeholder span {
    display: block;
    margin-top: 5px;
    color: #536179;
    font-size: 11.5px;
    line-height: 1.35;
}

.axa-demo-safety-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    border-color: #f1d1a6;
    background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.axa-demo-safety-card strong {
    color: #7a4e14;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.35;
}

[data-axa-screen="safety"] .axa-demo-customer-copy p {
    margin-top: 10px;
    color: #263656;
    font-size: 16.5px;
    line-height: 1.52;
}

[data-axa-screen="safety"] .axa-demo-safety-card strong {
    font-size: 15.5px;
    line-height: 1.45;
}

.axa-demo-safety-icon {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 999px;
    background: #fff2c8;
    box-shadow: inset 0 0 0 1px rgba(212, 135, 30, 0.18);
}

.axa-demo-safety-icon::before {
    content: "!";
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 999px;
    background: #f08a24;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
}

.axa-demo-consent-panel p {
    margin: 0;
    color: #66728a;
    font-size: 11.5px;
    font-weight: 700;
}

.axa-demo-consent-panel p[data-state="ok"] {
    color: var(--axa-green);
}

.axa-demo-consent-panel p[data-state="error"] {
    color: #b42318;
}

.axa-demo-gps-panel {
    display: grid;
    gap: 12px;
}

.axa-demo-gps-map {
    position: relative;
    overflow: hidden;
    min-height: 196px;
    border: 1px solid #dbe5f4;
    border-radius: 10px;
    background: #eef4fb;
}

.axa-demo-gps-map-tiles,
.axa-demo-gps-map-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.axa-demo-gps-map-tiles {
    background: #dce8f4;
}

.axa-demo-gps-map-tile {
    position: absolute;
    width: 256px;
    height: 256px;
    pointer-events: none;
    user-select: none;
}

.axa-demo-gps-map-overlay {
    pointer-events: none;
}

.axa-demo-gps-map-provider {
    position: absolute;
    right: 6px;
    bottom: 4px;
    z-index: 2;
    padding: 1px 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: rgba(7, 19, 51, 0.58);
    font-size: 8px;
    font-weight: 700;
    line-height: 1.25;
    pointer-events: none;
}

.axa-demo-gps-radius,
.axa-demo-gps-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.axa-demo-gps-radius {
    width: 78px;
    height: 78px;
    border: 1px solid rgba(0, 51, 153, 0.26);
    border-radius: 999px;
    background: rgba(0, 51, 153, 0.08);
}

.axa-demo-gps-pin {
    display: block;
    width: 24px;
    height: 24px;
    border: 3px solid #ffffff;
    border-radius: 999px 999px 999px 0;
    background: var(--axa-red);
    box-shadow: 0 10px 20px rgba(7, 19, 51, 0.22);
    transform: translate(-50%, -64%) rotate(-45deg);
}

.axa-demo-gps-pin::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 999px;
    background: #ffffff;
}

.axa-demo-gps-reference {
    border: 1px solid #dbe5f4;
    border-radius: 10px;
    padding: 10px 12px;
    background: #ffffff;
}

.axa-demo-gps-reference span,
.axa-demo-gps-reference small {
    display: block;
    color: #536179;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.3;
}

.axa-demo-gps-reference strong {
    display: block;
    margin: 4px 0;
    color: #071333;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.axa-demo-gps-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.axa-demo-gps-meta-grid div {
    min-width: 0;
    border: 1px solid #dbe5f4;
    border-radius: 10px;
    padding: 10px;
    background: #f8fbff;
}

.axa-demo-gps-meta-grid span {
    display: block;
    color: #536179;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
}

.axa-demo-gps-meta-grid strong {
    display: block;
    margin-top: 4px;
    color: #071333;
    font-size: 13px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.axa-demo-gps-details .axa-demo-gps-meta-grid {
    padding: 10px;
}

.axa-demo-gps-details[open] {
    background: #ffffff;
}

.axa-demo-gps-status {
    margin: 0;
    border: 1px solid #dbe5f4;
    border-radius: 10px;
    padding: 10px 12px;
    background: #f8fbff;
    color: #536179;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.4;
}

.axa-demo-gps-status[data-state="loading"] {
    border-color: #cfe1ff;
    background: #f3f8ff;
    color: var(--axa-blue);
}

.axa-demo-gps-status[data-state="success"] {
    border-color: #bfe8ce;
    background: #eefbf3;
    color: #14633a;
}

.axa-demo-gps-status[data-state="warning"] {
    border-color: #fed7aa;
    background: #fff7ed;
    color: #9a3412;
}

.axa-demo-gps-status[data-state="error"] {
    border-color: #fecaca;
    background: #fff5f5;
    color: #b42318;
}

.axa-demo-device-checks {
    display: grid;
    gap: 9px;
    margin-top: 14px;
}

.axa-demo-device-checks div {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    column-gap: 10px;
    row-gap: 2px;
    border: 1px solid #dbe5f4;
    border-radius: 10px;
    padding: 10px;
    background: #f8fbff;
}

.axa-demo-device-checks div > span {
    grid-row: 1 / 3;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    border-radius: 999px;
    background: var(--axa-green);
    box-shadow: inset 0 0 0 4px #dff7e9;
}

.axa-demo-device-checks strong {
    color: #071333;
    font-size: 13px;
    font-weight: 850;
}

.axa-demo-device-checks small {
    color: #66728a;
    font-size: 12px;
}

.axa-demo-denuncia-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    background: #f8fbff;
}

.axa-demo-denuncia-card > div {
    min-width: 0;
}

.axa-demo-denuncia-card span {
    display: block;
    color: #536179;
    font-size: 11px;
    font-weight: 800;
}

.axa-demo-denuncia-card em {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 6px 9px;
    background: #eef2ff;
    color: #3630a3;
    font-size: 10px;
    font-style: normal;
    font-weight: 850;
}

.axa-demo-manual-denuncia-field textarea {
    min-height: 118px;
    resize: vertical;
    line-height: 1.45;
}

.axa-demo-wide-action {
    width: 100%;
    margin-top: 14px;
}

.axa-demo-denuncia-state {
    display: grid;
    gap: 4px;
    margin-top: 12px;
    border: 1px solid #dbe5f4;
    border-radius: 12px;
    padding: 12px;
    background: #ffffff;
    color: var(--axa-blue-900);
    box-shadow: 0 8px 20px rgba(7, 19, 51, 0.04);
}

.axa-demo-denuncia-state span {
    width: max-content;
    max-width: 100%;
    border-radius: 999px;
    padding: 4px 9px;
    background: #edf2fb;
    color: #536179;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.axa-demo-denuncia-state strong,
.axa-demo-denuncia-state small {
    display: block;
}

.axa-demo-denuncia-state strong {
    font-size: 13px;
    font-weight: 850;
}

.axa-demo-denuncia-state small {
    color: #5d6b85;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
}

.axa-demo-denuncia-state[data-state="loading"] {
    border-color: #bfd6ff;
    background: #f3f8ff;
}

.axa-demo-denuncia-state[data-state="loading"] span {
    background: #dbeafe;
    color: var(--axa-blue);
}

.axa-demo-denuncia-state[data-state="ready"],
.axa-demo-denuncia-state[data-state="success"] {
    border-color: #bfe8ce;
    background: #eefbf3;
}

.axa-demo-denuncia-state[data-state="ready"] span,
.axa-demo-denuncia-state[data-state="success"] span {
    background: #d9f8e5;
    color: #14633a;
}

.axa-demo-denuncia-state[data-state="error"] {
    border-color: #fecaca;
    background: #fff5f5;
}

.axa-demo-denuncia-state[data-state="error"] span {
    background: #fee2e2;
    color: #b42318;
}

.axa-demo-denuncia-processing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    border: 1px solid #bfd6ff;
    border-radius: 12px;
    padding: 12px;
    background: #f3f8ff;
    color: var(--axa-blue-900);
}

.axa-demo-denuncia-processing[hidden] {
    display: none;
}

.axa-demo-denuncia-processing strong,
.axa-demo-denuncia-processing small {
    display: block;
}

.axa-demo-denuncia-processing strong {
    font-size: 13px;
    font-weight: 850;
}

.axa-demo-denuncia-processing small {
    margin-top: 3px;
    color: #5d6b85;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
}

.axa-demo-processing-icon {
    position: relative;
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    flex: 0 0 auto;
    width: 42px;
    height: 30px;
    border-radius: 8px;
    padding: 4px 7px;
}

.axa-demo-processing-icon i {
    display: block;
    width: 6px;
    height: 14px;
    border-radius: 999px;
    background: var(--axa-blue);
    transform-origin: center bottom;
    animation: axa-demo-processing-bar 780ms ease-in-out infinite;
}

.axa-demo-processing-icon i:nth-child(2) {
    height: 23px;
    background: #5b8fe8;
    animation-delay: 120ms;
}

.axa-demo-processing-icon i:nth-child(3) {
    height: 17px;
    background: #f08a24;
    animation-delay: 240ms;
}

@keyframes axa-demo-processing-bar {
    0%,
    100% {
        opacity: 0.56;
        transform: scaleY(0.55);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes axa-demo-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes axa-demo-work-pulse {
    0%,
    100% {
        opacity: 0.58;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-2px);
    }
}

.axa-demo-denuncia-status {
    margin-top: 12px;
    border: 1px solid #dbe5f4;
    border-radius: 10px;
    padding: 10px 12px;
    background: #f8fbff;
    color: #536179;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.4;
}

.axa-demo-denuncia-status[data-state="loading"] {
    border-color: #cfe1ff;
    background: #f3f8ff;
    color: var(--axa-blue);
}

.axa-demo-denuncia-status[data-state="ready"] {
    border-color: #dbeafe;
    background: #eff6ff;
    color: #184f90;
}

.axa-demo-denuncia-status[data-state="success"] {
    border-color: #bfe8ce;
    background: #eefbf3;
    color: #14633a;
}

.axa-demo-denuncia-status[data-state="error"] {
    border-color: #fecaca;
    background: #fff5f5;
    color: #b42318;
}

.axa-demo-denuncia-summary {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    border: 1px solid var(--axa-line);
    border-radius: var(--axa-radius);
    padding: 14px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(7, 19, 51, 0.04);
}

.axa-demo-denuncia-summary[hidden] {
    display: none;
}

.axa-demo-denuncia-summary > div {
    display: grid;
    gap: 3px;
}

.axa-demo-denuncia-summary span {
    color: #66728a;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.axa-demo-denuncia-summary strong,
.axa-demo-denuncia-summary p {
    margin: 0;
    color: #071333;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.axa-demo-denuncia-summary small {
    border-radius: 8px;
    padding: 8px 10px;
    background: #fff8e8;
    color: #7a4d00;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.35;
}

.axa-demo-denuncia-confirm-actions,
.axa-demo-correction-panel {
    margin-top: 14px;
    border: 1px solid var(--axa-line);
    border-radius: var(--axa-radius);
    padding: 14px;
    background: #ffffff;
}

.axa-demo-denuncia-confirm-actions[hidden],
.axa-demo-correction-panel[hidden] {
    display: none;
}

.axa-demo-denuncia-confirm-actions {
    display: grid;
    gap: 12px;
}

.axa-demo-denuncia-confirm-actions > strong {
    color: #071333;
    font-size: 14px;
    font-weight: 850;
}

.axa-demo-denuncia-confirm-actions > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.axa-demo-correction-panel {
    background: #f8fbff;
}

.axa-demo-correction-panel .axa-demo-field {
    margin-top: 0;
}

.axa-demo-correction-panel button {
    width: 100%;
    margin-top: 12px;
}

.axa-demo-ai-placeholder {
    background: #f6fbff;
    border-color: #cfe1ff;
}

.axa-demo-progress-card {
    display: grid;
    gap: 10px;
    background: #f8fbff;
}

.axa-demo-progress-card div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.axa-demo-progress-card span {
    color: #536179;
    font-size: 12px;
    font-weight: 750;
}

.axa-demo-progress-card strong {
    color: var(--axa-blue-900);
    font-size: 13px;
    font-weight: 900;
}

.axa-demo-photo-guidance-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
}

.axa-demo-photo-guidance-grid div {
    border: 1px solid #dbe5f4;
    border-radius: 10px;
    padding: 9px;
    background: #f8fbff;
}

.axa-demo-photo-guidance-grid span {
    display: block;
    color: #66728a;
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
}

.axa-demo-photo-guidance-grid strong {
    display: block;
    margin-top: 3px;
    color: #071333;
    font-size: 11px;
    font-weight: 850;
    line-height: 1.25;
}

.axa-demo-meter {
    overflow: hidden;
    height: 8px;
    border-radius: 999px;
    background: #dbe5f4;
}

.axa-demo-meter i {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--axa-blue);
    transition: width 180ms ease;
}

.axa-demo-photo-ai-summary {
    display: grid;
    gap: 4px;
    margin-top: 12px;
    border: 1px solid #dbe5f3;
    border-radius: 10px;
    padding: 11px 12px;
    background: #f8fbff;
    color: #5b6980;
    font-size: 12px;
    line-height: 1.4;
}

.axa-demo-photo-ai-summary strong {
    color: var(--axa-blue-900);
    font-size: 13px;
}

.axa-demo-photo-ai-summary span {
    color: #66728a;
}

.axa-demo-photo-ai-summary small {
    color: #66728a;
    font-size: 11px;
    font-weight: 750;
}

.axa-demo-work-indicator {
    display: inline-grid;
    grid-template-columns: repeat(3, 8px);
    gap: 5px;
    align-items: end;
    width: max-content;
    height: 22px;
    margin-top: 4px;
    opacity: 0.5;
}

.axa-demo-work-indicator i {
    display: block;
    width: 8px;
    height: 14px;
    border-radius: 4px;
    background: #9aa8bc;
    transform-origin: center bottom;
    transform: scaleY(0.72);
}

.axa-demo-work-indicator i:nth-child(2) {
    height: 21px;
    background: #a6b3c3;
}

.axa-demo-work-indicator i:nth-child(3) {
    height: 16px;
    background: #b2bdca;
}

@keyframes axa-demo-work-bar {
    0%,
    100% {
        transform: scaleY(0.55);
        opacity: 0.55;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.axa-demo-photo-ai-summary[data-state="processing"] {
    border-color: #bfd4f5;
    background: #f0f6ff;
}

.axa-demo-photo-ai-summary[data-state="processing"] .axa-demo-work-indicator {
    opacity: 1;
}

.axa-demo-ai-wait-modal[data-state="waiting"] .axa-demo-work-indicator,
.axa-demo-ai-wait-modal[data-state="estimate-waiting"] .axa-demo-work-indicator,
.axa-demo-ai-wait-modal[data-state="success"] .axa-demo-work-indicator {
    opacity: 1;
}

.axa-demo-photo-ai-summary[data-state="processing"] .axa-demo-work-indicator i,
.axa-demo-ai-wait-modal[data-state="waiting"] .axa-demo-work-indicator i,
.axa-demo-ai-wait-modal[data-state="estimate-waiting"] .axa-demo-work-indicator i {
    background: var(--axa-blue, #003399);
    animation: axa-demo-work-bar 880ms ease-in-out infinite;
}

.axa-demo-photo-ai-summary[data-state="processing"] .axa-demo-work-indicator i:nth-child(2),
.axa-demo-ai-wait-modal[data-state="waiting"] .axa-demo-work-indicator i:nth-child(2),
.axa-demo-ai-wait-modal[data-state="estimate-waiting"] .axa-demo-work-indicator i:nth-child(2) {
    background: #5b8fe8;
    animation-delay: 120ms;
}

.axa-demo-photo-ai-summary[data-state="processing"] .axa-demo-work-indicator i:nth-child(3),
.axa-demo-ai-wait-modal[data-state="waiting"] .axa-demo-work-indicator i:nth-child(3),
.axa-demo-ai-wait-modal[data-state="estimate-waiting"] .axa-demo-work-indicator i:nth-child(3) {
    background: #f08a24;
    animation-delay: 240ms;
}

.axa-demo-photo-ai-summary[data-state="ready"] {
    border-color: #b8dfcf;
    background: #f0fbf6;
}

.axa-demo-photo-ai-summary[data-state="ready"] .axa-demo-work-indicator i,
.axa-demo-ai-wait-modal[data-state="success"] .axa-demo-work-indicator i {
    background: #20a166;
    animation: none;
    transform: scaleY(1);
    opacity: 1;
}

.axa-demo-photo-ai-summary[data-state="warning"],
.axa-demo-photo-ai-summary[data-state="error"] {
    border-color: #f1d1a6;
    background: #fff8ed;
}

.axa-demo-photo-ai-summary[data-state="warning"] .axa-demo-work-indicator i,
.axa-demo-photo-ai-summary[data-state="error"] .axa-demo-work-indicator i {
    background: #d4871e;
}

.axa-demo-photo-ai-summary-final {
    margin-bottom: 14px;
}

.axa-demo-photo-count,
.axa-demo-photo-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.axa-demo-photo-count {
    margin-top: 16px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #edf3ff;
    color: var(--axa-blue-900);
    font-size: 14px;
    font-weight: 850;
}

.axa-demo-photo-step {
    padding: 14px;
}

.axa-demo-required-hint {
    display: none;
    margin: 10px 0 0;
    border-radius: 9px;
    padding: 9px 10px;
    background: #fff7ed;
    color: #9a3412;
    font-size: 12px;
    font-weight: 750;
}

.axa-demo-photo-step.is-missing-required .axa-demo-required-hint {
    display: block;
}

.axa-demo-photo-heading span {
    border-radius: 999px;
    padding: 5px 10px;
    background: #fff2c8;
    color: #9a4b00;
    font-size: 11px;
    font-weight: 850;
}

.axa-demo-photo-heading small {
    color: var(--axa-blue-900);
    font-size: 14px;
}

.axa-demo-upload-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.axa-demo-upload-actions label,
.axa-demo-upload-actions button {
    flex: 1 1 130px;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid #cbd7e8;
    padding: 0 12px;
    background: #edf4ff;
    color: var(--axa-blue);
    line-height: 1.2;
    text-align: center;
}

.axa-demo-upload-actions label span {
    display: inline-flex;
    min-height: 100%;
    align-items: center;
    justify-content: center;
}

.axa-demo-upload-actions button {
    background: #ffffff;
}

.axa-demo-upload-actions .axa-demo-photo-action-camera {
    border-color: var(--axa-blue);
    background: var(--axa-blue);
    color: #ffffff;
}

.axa-demo-upload-actions .axa-demo-photo-action-gallery {
    background: #edf4ff;
    color: var(--axa-blue);
}

.axa-demo-upload-actions .axa-demo-unavailable-action {
    flex-basis: 100%;
    border-color: #f1d1a6;
    background: #fff8ed;
    color: #7a4e14;
}

.axa-demo-photo-more {
    flex: 1 1 100%;
    background: #ffffff;
}

.axa-demo-photo-more > summary {
    min-height: 44px;
    color: #33415f;
}

.axa-demo-photo-more-actions {
    display: grid;
    gap: 8px;
    padding: 10px;
}

.axa-demo-upload-actions .axa-demo-photo-more-actions button {
    width: 100%;
    min-height: 44px;
}

.axa-demo-upload-actions input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.axa-demo-preview {
    display: grid;
    min-height: 118px;
    margin-top: 14px;
    place-items: center;
    border: 1px solid var(--axa-line);
    border-radius: 10px;
    background: #f8fafc;
    color: #66728a;
    text-align: center;
}

.axa-demo-preview.has-photo {
    padding: 10px;
}

.axa-demo-preview.is-photo-rejected {
    border-color: #f1d1a6;
    background: #fff8ed;
}

.axa-demo-preview.is-photo-rejected strong {
    color: #7a4e14;
}

.axa-demo-preview.is-photo-unavailable {
    border-style: solid;
    border-color: #b8dfcf;
    background: #f0fbf6;
}

.axa-demo-unavailable-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 999px;
    background: #20a166;
}

.axa-demo-unavailable-icon::before {
    content: "";
    width: 16px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 0 3px 3px;
    transform: rotate(-45deg) translate(1px, -1px);
}

.axa-demo-preview-visual {
    display: block;
    width: 100%;
    height: 118px;
    border-radius: 8px;
    background-image: var(--axa-photo-sheet);
    background-repeat: no-repeat;
    background-size: 300% 200%;
}

.axa-demo-preview strong,
.axa-demo-preview small {
    display: block;
}

.axa-demo-preview strong {
    margin-top: 8px;
    color: var(--axa-blue-900);
    font-size: 13px;
}

.axa-demo-preview small {
    margin-top: 4px;
    color: #66728a;
    font-size: 12px;
}

.axa-demo-photo-ai-feedback {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    border: 1px solid #dbe5f3;
    border-radius: 10px;
    padding: 10px 12px;
    background: #f8fbff;
    color: #5b6980;
    font-size: 12px;
    line-height: 1.35;
}

.axa-demo-photo-ai-feedback::before {
    content: "";
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    margin-top: 4px;
    border-radius: 999px;
    background: #8aa0bc;
}

.axa-demo-photo-ai-feedback strong,
.axa-demo-photo-ai-feedback span {
    display: block;
}

.axa-demo-photo-ai-feedback > div {
    flex: 1 1 auto;
    min-width: 0;
}

.axa-demo-photo-ai-feedback strong {
    color: var(--axa-blue-900);
    font-size: 12px;
}

.axa-demo-photo-ai-feedback small {
    display: block;
    margin-top: 3px;
    color: #66728a;
}

.axa-demo-photo-ai-retry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin-top: 9px;
    padding: 7px 11px;
    border: 1px solid #d9a55f;
    border-radius: 8px;
    background: #ffffff;
    color: #7a4e14;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.15;
    text-align: center;
    cursor: pointer;
}

.axa-demo-photo-ai-retry:hover,
.axa-demo-photo-ai-retry:focus-visible {
    border-color: #b86f12;
    color: #5c390d;
}

.axa-demo-photo-ai-retry:disabled {
    cursor: wait;
    opacity: 0.68;
}

.axa-demo-photo-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin-top: 9px;
    border: 1px solid #efb3a4;
    border-radius: 8px;
    padding: 7px 11px;
    background: #ffffff;
    color: #9a3412;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.15;
    text-align: center;
    cursor: pointer;
}

.axa-demo-photo-delete:hover,
.axa-demo-photo-delete:focus-visible {
    border-color: #d36b52;
    color: #7c2d12;
}

.axa-demo-photo-delete:disabled {
    cursor: wait;
    opacity: 0.68;
}

.axa-demo-upload-progress {
    display: block;
    overflow: hidden;
    width: min(220px, 100%);
    height: 5px;
    margin-top: 8px;
    border-radius: 999px;
    background: rgba(0, 51, 160, 0.12);
}

.axa-demo-upload-progress i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--axa-blue), #f08a24);
    transition: width 180ms ease;
}

.axa-demo-photo-ai-feedback.is-loading::before {
    flex-basis: 28px;
    width: 28px;
    height: 18px;
    border-radius: 5px;
    background:
        linear-gradient(var(--axa-blue), var(--axa-blue)) 4px 50% / 5px 10px no-repeat,
        linear-gradient(#5b8fe8, #5b8fe8) 12px 50% / 5px 16px no-repeat,
        linear-gradient(#f08a24, #f08a24) 20px 50% / 5px 12px no-repeat;
    animation: axa-demo-work-pulse 900ms ease-in-out infinite;
}

.axa-demo-photo-ai-feedback.is-green {
    border-color: #b8dfcf;
    background: #f0fbf6;
    color: #275244;
}

.axa-demo-photo-ai-feedback.is-green::before {
    background: #20a166;
    animation: none;
    transform: none;
}

.axa-demo-photo-ai-feedback.is-orange {
    border-color: #f1d1a6;
    background: #fff8ed;
    color: #7a4e14;
}

.axa-demo-photo-ai-feedback.is-orange::before,
.axa-demo-photo-ai-feedback.is-error::before {
    background: #d4871e;
}

.axa-demo-photo-ai-feedback.is-blue {
    border-color: #bfd4f5;
    background: #f0f6ff;
    color: #285b9c;
}

.axa-demo-photo-ai-feedback.is-blue::before {
    background: var(--axa-blue);
}

.axa-demo-unavailable-panel {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: 14px;
    background: #fff8e8;
}

.axa-demo-unavailable-panel[hidden] {
    display: none;
}

.axa-demo-unavailable-panel p {
    margin: 0;
    color: #7a5505;
    line-height: 1.5;
}

.axa-demo-unavailable-panel label {
    display: grid;
    gap: 6px;
    color: #071333;
    font-weight: 850;
}

.axa-demo-unavailable-panel textarea {
    width: 100%;
    min-height: 88px;
    resize: vertical;
    border: 1px solid #d8e1ef;
    border-radius: 12px;
    padding: 10px 12px;
    color: #071333;
    font: inherit;
}

.axa-demo-unavailable-panel small {
    color: #b45309;
    font-weight: 800;
}

.axa-demo-unavailable-panel-actions {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8px;
}

.axa-demo-file-status {
    display: block;
    margin: 8px 0 0;
    color: #1f6b4b;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.axa-demo-file-status[hidden] {
    display: none;
}

.axa-demo-final-gallery {
    display: grid;
    gap: 12px;
}

.axa-demo-final-gallery-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.axa-demo-final-gallery-head div {
    display: grid;
    gap: 4px;
}

.axa-demo-final-gallery-head span {
    color: #071333;
    font-weight: 900;
}

.axa-demo-final-gallery-head small {
    color: var(--axa-muted);
    line-height: 1.4;
}

.axa-demo-final-gallery-head strong {
    min-width: 58px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #071333;
    color: #fff;
    font-size: 0.82rem;
    white-space: nowrap;
}

.axa-demo-final-gallery-upload {
    display: grid;
    gap: 8px;
}

.axa-demo-final-gallery-upload input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.axa-demo-final-gallery-selection {
    display: grid;
    gap: 10px;
    margin: 0;
}

.axa-demo-final-gallery-select-bar,
.axa-demo-final-gallery-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.axa-demo-final-gallery-select-bar[hidden],
.axa-demo-final-gallery-footer[hidden] {
    display: none;
}

.axa-demo-final-gallery-select-bar span {
    color: var(--axa-muted);
    font-size: 0.84rem;
    font-weight: 850;
}

.axa-demo-final-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin: 2px 0 0;
    padding: 0;
}

.axa-demo-final-gallery-empty {
    grid-column: 1 / -1;
    padding: 14px;
    border: 1px dashed #c9d5e6;
    border-radius: 14px;
    background: #f8fbff;
    color: #6b7890;
    font-weight: 750;
    text-align: center;
}

.axa-demo-final-gallery-tile {
    position: relative;
    display: grid;
    gap: 6px;
    min-width: 0;
}

.axa-demo-final-gallery-frame {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background: #dfe7f3;
    color: #fff;
    text-decoration: none;
}

.axa-demo-final-gallery-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.axa-demo-final-gallery-frame.is-document {
    display: grid;
    place-items: center;
    border: 1px solid #cbd8ea;
    background: linear-gradient(180deg, #f9fbff, #e8eef8);
    color: #071333;
}

.axa-demo-final-gallery-frame::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(180deg, rgba(7, 19, 51, 0), rgba(7, 19, 51, 0.72));
    pointer-events: none;
}

.axa-demo-final-gallery-frame.is-document::after {
    height: 58%;
    background: linear-gradient(180deg, rgba(7, 19, 51, 0), rgba(7, 19, 51, 0.74));
}

.axa-demo-final-gallery-document-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 56px;
    border: 1px solid #d5dfef;
    border-radius: 8px;
    background: #fff;
    color: var(--axa-blue);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0;
    box-shadow: 0 8px 18px rgba(7, 19, 51, 0.1);
}

.axa-demo-final-gallery-frame strong {
    position: absolute;
    z-index: 1;
    left: 7px;
    right: 7px;
    bottom: 7px;
    overflow: hidden;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.axa-demo-final-gallery-checkbox {
    position: absolute;
    inset: 8px auto auto 8px;
    z-index: 2;
    width: 24px;
    height: 24px;
    opacity: 0;
}

.axa-demo-final-gallery-check {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.96);
    border-radius: 999px;
    background: rgba(7, 19, 51, 0.38);
    cursor: pointer;
}

.axa-demo-final-gallery-checkbox:focus-visible ~ .axa-demo-final-gallery-frame,
.axa-demo-final-gallery-checkbox:checked ~ .axa-demo-final-gallery-frame {
    outline: 3px solid var(--axa-blue);
    outline-offset: -3px;
}

.axa-demo-final-gallery-checkbox:checked ~ .axa-demo-final-gallery-check {
    border-color: var(--axa-blue);
    background: var(--axa-blue);
}

.axa-demo-final-gallery-checkbox:checked ~ .axa-demo-final-gallery-check::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.axa-demo-final-gallery-tile > small {
    min-width: 0;
    color: #66728a;
    font-size: 0.74rem;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[data-axa-document-hint][data-state="error"] {
    color: #b45309;
}

[data-axa-document-hint][data-state="ok"] {
    color: #08764a;
}

[data-axa-document-hint][data-state="saving"] {
    color: #285b9c;
}

.axa-demo-package-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.axa-demo-review-gallery {
    display: grid;
    gap: 10px;
    margin-top: 10px;
    border: 1px solid #dbe5f4;
    border-radius: 10px;
    padding: 10px;
    background: #f8fbff;
}

.axa-demo-review-gallery > summary {
    margin: -10px -10px 0;
    padding: 0 12px;
}

.axa-demo-review-gallery-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.axa-demo-review-gallery-head span {
    display: block;
    color: #071333;
    font-size: 13px;
    font-weight: 900;
}

.axa-demo-review-gallery-head small {
    display: block;
    margin-top: 2px;
    color: #66728a;
    font-size: 11px;
    font-weight: 700;
}

.axa-demo-review-gallery-head button {
    flex: 0 0 auto;
    min-height: 36px;
}

.axa-demo-review-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

.axa-demo-review-photo-empty {
    grid-column: 1 / -1;
    border: 1px dashed #c9d5e6;
    border-radius: 10px;
    padding: 12px;
    color: #66728a;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.axa-demo-transmission-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.axa-demo-transmission-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--axa-line);
    border-radius: 10px;
    padding: 14px;
    color: #536179;
    font-size: 14px;
}

.axa-demo-transmission-list li span {
    display: block;
    width: 22px;
    height: 22px;
    border: 2px solid #b9c5d7;
    border-radius: 999px;
}

.axa-demo-transmission-list li.is-active span {
    border-color: var(--axa-blue);
    border-top-color: transparent;
    animation: axa-demo-spin 0.8s linear infinite;
}

.axa-demo-transmission-list li.is-complete span {
    border-color: var(--axa-green);
    background: var(--axa-green);
}

.axa-demo-done-card {
    padding: 20px;
    background: #effdf6;
    border-color: #bcebd4;
}

.axa-demo-done-card > span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 999px;
    background: #008a4c;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.axa-demo-done-card > span[data-state="warning"],
.axa-demo-done-card > span[data-state="error"] {
    background: #c45a09;
}

.axa-demo-done-card h1 {
    margin-top: 18px;
    color: #005c3a;
    font-size: 24px;
}

.axa-demo-done-card dt {
    color: #66728a;
    font-size: 12px;
    font-weight: 750;
}

.axa-demo-done-card .axa-demo-estimate-prompt {
    font-size: 19.6px;
}

.axa-demo-done-card .axa-demo-choice-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.axa-demo-done-card .axa-demo-choice-row .axa-demo-primary,
.axa-demo-done-card .axa-demo-choice-row .axa-demo-secondary {
    min-height: 46px;
    justify-content: center;
    font-weight: 900;
}

.axa-demo-notes-disclosure {
    margin-top: 10px;
    background: #ffffff;
}

.axa-demo-notes-disclosure .axa-demo-field {
    margin: 0;
    padding: 10px;
}

.axa-demo-final-message,
.axa-demo-estimate-proposal {
    display: grid;
    gap: 10px;
}

.axa-demo-final-message[hidden],
.axa-demo-estimate-proposal[hidden] {
    display: none !important;
}

.axa-demo-final-message p,
.axa-demo-estimate-proposal p {
    margin: 0;
    color: #173a2d;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.axa-demo-estimate-proposal p {
    color: #071333;
    font-size: 15px;
    font-weight: 850;
}

.axa-demo-estimate-proposal > p[data-axa-estimate-proposal-text] {
    border: 1px solid #bfe8ce;
    border-radius: 10px;
    padding: 12px;
    background: #f0fbf6;
    line-height: 1.55;
}

.axa-demo-estimate-sources {
    display: grid;
    gap: 8px;
    margin-top: 6px;
    border-color: rgba(0, 138, 76, 0.18);
    background: #ffffff;
}

.axa-demo-estimate-sources[hidden] {
    display: none !important;
}

.axa-demo-estimate-sources > span {
    color: #285745;
    font-size: 12px;
    font-weight: 850;
}

.axa-demo-estimate-sources p {
    padding: 0 12px;
    color: #285745;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.4;
}

.axa-demo-estimate-sources ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0 12px 12px;
    list-style: none;
}

.axa-demo-estimate-sources li {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.axa-demo-estimate-sources a {
    overflow-wrap: anywhere;
    color: #003399;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}

.axa-demo-estimate-sources small {
    color: #526078;
    font-size: 11px;
    line-height: 1.35;
}

.axa-demo-done-meta {
    border-top: 1px solid rgba(0, 138, 76, 0.16);
    padding-top: 12px;
}

.axa-demo-estimate-question-form {
    display: grid;
    gap: 12px;
    border: 1px solid #dbe5f3;
    border-radius: 10px;
    padding: 12px;
    background: #f8fbff;
}

.axa-demo-estimate-question-list {
    display: grid;
    gap: 8px;
}

.axa-demo-estimate-question-card {
    display: grid;
    gap: 6px;
    margin: 0;
}

.axa-demo-estimate-question-card p {
    margin: 0;
    color: #394765;
    font-size: 13.5px;
    line-height: 1.45;
}

.axa-demo-estimate-question-card strong {
    color: #071333;
    font-size: 12px;
    font-weight: 900;
}

.axa-demo-estimate-question-form .axa-demo-field {
    margin: 0;
}

.axa-demo-estimate-question-form textarea {
    min-height: 96px;
    resize: vertical;
}

.axa-demo-estimate-question-form small {
    min-height: 16px;
    color: #a94b13;
    font-size: 12px;
    font-weight: 750;
}

.axa-demo-ai-wait-modal[data-state="estimate-question"] .axa-demo-ai-wait-icon {
    background: #eef5ff;
}

.axa-demo-ai-wait-modal[data-state="estimate-question"] .axa-demo-ai-wait-icon::before {
    content: "?";
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 0;
    color: var(--axa-blue);
    font-size: 17px;
    font-weight: 900;
    animation: none;
}

.axa-demo-app {
    min-height: 100vh;
    background: #f5f8fc;
}

.axa-demo-appbar {
    position: sticky;
    top: 0;
    z-index: 5;
    display: flex;
    height: 66px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--axa-line);
    padding: 0 18px 0 30px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
}

.axa-demo-appbrand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--axa-blue-900);
    font-size: 20px;
    font-weight: 850;
    text-decoration: none;
}

.axa-demo-appbrand i {
    display: block;
    width: 9px;
    height: 25px;
    background: var(--axa-red);
    transform: skew(-28deg);
}

.axa-demo-app-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.axa-demo-toplink {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border: 1px solid #d8e4f4;
    border-radius: 999px;
    padding: 0 12px;
    background: #f8fbff;
    color: var(--axa-blue);
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}

.axa-demo-icon-button {
    position: relative;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: #071333;
}

.axa-demo-icon-button span {
    position: absolute;
    top: 2px;
    right: 2px;
    display: grid;
    width: 16px;
    height: 16px;
    place-items: center;
    border-radius: 999px;
    background: #ef233c;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
}

.axa-demo-operator-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #071333;
    font-size: 14px;
    font-weight: 700;
}

.axa-demo-avatar {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 999px;
    background: #e8edf5;
    color: #111b36;
    font-size: 13px;
    font-weight: 850;
}

.axa-demo-workspace {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    min-height: calc(100vh - 66px);
}

.axa-demo-side-nav {
    display: flex;
    min-height: calc(100vh - 66px);
    flex-direction: column;
    justify-content: space-between;
    padding: 22px 10px 26px;
    background: linear-gradient(180deg, #073aa4 0%, #00235f 46%, #001b4d 100%);
    color: #ffffff;
}

.axa-demo-side-nav nav {
    display: grid;
    gap: 10px;
}

.axa-demo-side-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    border-radius: 7px;
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 650;
    text-decoration: none;
}

.axa-demo-side-nav a.is-active {
    background: #0b51de;
    box-shadow: 0 10px 18px rgba(0, 16, 68, 0.22);
}

.axa-demo-side-nav svg {
    width: 16px;
    height: 16px;
}

.axa-demo-logout {
    margin-top: 24px;
}

.axa-demo-main {
    min-width: 0;
    padding: 22px 26px;
}

.axa-demo-mobile-menu {
    display: none;
}

.axa-demo-page-head h1 {
    margin: 0;
    color: #111b36;
    font-size: 22px;
    font-weight: 850;
    line-height: 1.15;
}

.axa-demo-page-head p {
    margin: 5px 0 0;
    color: #4d5a75;
    font-size: 14px;
}

.axa-demo-page-head-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.axa-demo-source-note {
    display: inline-block;
    margin-top: 8px;
    color: #66728a;
    font-size: 12px;
    font-weight: 650;
}

.axa-demo-reset-form {
    flex: 0 0 auto;
}

.axa-demo-page-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.axa-demo-primary-action {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    padding: 0 15px;
    background: var(--axa-blue);
    color: #ffffff;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 12px 22px rgba(0, 51, 153, 0.16);
}

.axa-demo-reset-button {
    min-height: 40px;
    border: 1px solid #f3b7a7;
    border-radius: 9px;
    padding: 0 14px;
    background: #fff5f1;
    color: #a13d16;
    font: inherit;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
}

.axa-demo-operator-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
    gap: 14px;
    align-items: start;
    margin-top: 20px;
}

.axa-demo-operator-brief,
.axa-demo-action-panel,
.axa-demo-alert-card {
    border: 1px solid var(--axa-line);
    border-radius: var(--axa-radius);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(7, 19, 51, 0.04);
}

.axa-demo-operator-brief {
    padding: 20px;
}

.axa-demo-brief-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.axa-demo-brief-topline > span:last-child {
    color: var(--axa-blue);
    font-size: 12px;
    font-weight: 850;
}

.axa-demo-operator-brief h2 {
    margin: 0;
    color: #071333;
    font-size: 24px;
    font-weight: 850;
    line-height: 1.15;
}

.axa-demo-operator-brief p,
.axa-demo-action-panel p {
    margin: 10px 0 0;
    color: #4d5a75;
    font-size: 13px;
    line-height: 1.45;
}

.axa-demo-progress-line {
    height: 8px;
    overflow: hidden;
    margin-top: 18px;
    border-radius: 999px;
    background: #e6edf7;
}

.axa-demo-progress-line span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--axa-blue), #148a45);
}

.axa-demo-brief-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.axa-demo-brief-meta span {
    border: 1px solid #e8eef6;
    border-radius: 10px;
    padding: 10px;
    background: #f8fbff;
    color: #66728a;
    font-size: 11px;
    font-weight: 700;
}

.axa-demo-brief-meta strong {
    display: block;
    margin-top: 4px;
    color: #071333;
    font-size: 12px;
    font-weight: 850;
    overflow-wrap: anywhere;
}

.axa-demo-action-panel {
    padding: 14px;
}

.axa-demo-action-list {
    display: grid;
    gap: 7px;
    margin-top: 10px;
}

.axa-demo-action-card {
    display: grid;
    gap: 3px;
    width: 100%;
    border: 1px solid #dce6f5;
    border-radius: 10px;
    padding: 9px 10px;
    background: #f8fbff;
    color: #071333;
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.axa-demo-action-card strong {
    font-size: 12px;
    font-weight: 850;
}

.axa-demo-action-card span {
    color: #66728a;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.28;
}

.axa-demo-action-card.is-primary {
    border-color: var(--axa-blue);
    background: var(--axa-blue);
    color: #ffffff;
}

.axa-demo-action-card.is-primary span {
    color: rgba(255, 255, 255, 0.82);
}

.axa-demo-action-card.is-danger {
    border-color: #f3b7a7;
    background: #fff5f1;
    color: #a13d16;
}

.axa-demo-action-card.is-disabled {
    cursor: not-allowed;
    opacity: 0.62;
}

.axa-demo-alert-board {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.axa-demo-alert-card {
    display: grid;
    gap: 6px;
    padding: 13px;
    color: #071333;
    text-decoration: none;
}

.axa-demo-alert-card span,
.axa-demo-alert-card em {
    color: #66728a;
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

.axa-demo-alert-card strong {
    color: #071333;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.axa-demo-alert-card em {
    color: var(--axa-blue);
}

.axa-demo-alert-card.is-orange {
    border-color: #ffd5b3;
    background: #fff8f1;
}

.axa-demo-alert-card.is-green {
    border-color: #bfe9cf;
    background: #f2fbf6;
}

.axa-demo-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.axa-demo-stat,
.axa-demo-panel {
    border: 1px solid var(--axa-line);
    border-radius: var(--axa-radius);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(7, 19, 51, 0.04);
}

.axa-demo-stat {
    display: flex;
    min-height: 108px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    color: inherit;
    text-decoration: none;
}

.axa-demo-stat-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 8px;
}

.axa-demo-stat-icon.is-blue {
    background: #e8f0ff;
    color: var(--axa-blue);
}

.axa-demo-stat-icon.is-green {
    background: #e9f8ef;
    color: var(--axa-green);
}

.axa-demo-stat-icon.is-orange {
    background: #fff1e8;
    color: var(--axa-orange);
}

.axa-demo-stat span,
.axa-demo-stat small,
.axa-demo-panel-head a,
.axa-demo-selected dt,
.axa-demo-ai-box span,
.axa-demo-ai-box small,
.axa-demo-backtesting-grid span {
    color: #4d5a75;
    font-size: 12px;
    font-weight: 650;
}

.axa-demo-stat strong {
    display: block;
    margin-top: 8px;
    color: #071333;
    font-size: 28px;
    font-weight: 850;
}

.axa-demo-ring {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: conic-gradient(var(--axa-blue) var(--axa-ring-value, 78%), #e6edf7 0);
    -webkit-mask: radial-gradient(farthest-side, transparent 64%, #000 66%);
    mask: radial-gradient(farthest-side, transparent 64%, #000 66%);
}

.axa-demo-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 14px;
    margin-top: 14px;
}

.axa-demo-panel {
    padding: 16px;
}

.axa-demo-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.axa-demo-panel-head h2 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: #071333;
    font-size: 15px;
    font-weight: 850;
}

.axa-demo-panel-head a {
    color: var(--axa-blue);
    text-decoration: none;
}

.axa-demo-table-wrap {
    overflow-x: auto;
}

.axa-demo-table-wrap table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid var(--axa-line);
    border-radius: 10px;
    font-size: 12px;
}

.axa-demo-table-wrap th,
.axa-demo-table-wrap td {
    padding: 12px 10px;
    border-bottom: 1px solid #e8eef6;
    text-align: left;
    vertical-align: middle;
}

.axa-demo-table-wrap th {
    color: #26334d;
    font-weight: 750;
}

.axa-demo-table-wrap td {
    color: #071333;
    font-weight: 600;
}

.axa-demo-table-wrap tr.is-selected td {
    background: #f6f9ff;
}

.axa-demo-table-wrap td a {
    color: var(--axa-blue);
    font-weight: 850;
    text-decoration: none;
}

.axa-demo-status {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    border-radius: 7px;
    padding: 0 9px;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.axa-demo-status.is-blue {
    background: #dce9ff;
    color: var(--axa-blue);
}

.axa-demo-status.is-orange {
    background: #fff0df;
    color: #c45200;
}

.axa-demo-status.is-green {
    background: #dbf5e6;
    color: #0c7438;
}

.axa-demo-mini-meter {
    display: inline-flex;
    width: 54px;
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: #e6edf7;
    vertical-align: middle;
}

.axa-demo-mini-meter span {
    display: block;
    border-radius: inherit;
    background: var(--axa-blue);
}

.axa-demo-table-wrap td:nth-child(5) small {
    display: inline-block;
    margin-left: 7px;
    color: #26334d;
}

.axa-demo-table-wrap td strong {
    display: block;
    font-size: 12px;
}

.axa-demo-table-wrap td small {
    display: block;
    margin-top: 3px;
    color: #66728a;
    font-size: 11px;
    font-weight: 650;
}

.axa-demo-selected > strong {
    display: block;
    margin: 4px 0 14px;
    color: var(--axa-blue);
    font-size: 18px;
    font-weight: 850;
}

.axa-demo-selected dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
    margin: 0;
}

.axa-demo-selected dt {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.axa-demo-selected dd {
    margin: 0;
    color: #071333;
    font-size: 13px;
    font-weight: 800;
}

.axa-demo-photo-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(64px, 1fr));
    gap: 12px;
}

.axa-demo-photo-strip .axa-demo-evidence-photo {
    aspect-ratio: 1 / 1.2;
}

.axa-demo-photo-strip .axa-demo-evidence-photo span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 26px 6px 7px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.46));
    color: #ffffff;
    font-size: 10px;
    font-weight: 750;
}

.axa-demo-photo-strip .axa-demo-evidence-photo span small {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 9px;
    font-weight: 650;
}

.axa-demo-photo-strip .axa-demo-evidence-photo figcaption {
    position: absolute;
    z-index: 1;
    top: 7px;
    right: 7px;
    left: 7px;
    display: grid;
    gap: 2px;
    justify-items: start;
    margin: 0;
    color: #071333;
    font-size: 11px;
    font-weight: 800;
}

.axa-demo-photo-strip .axa-demo-evidence-photo figcaption strong {
    border-radius: 999px;
    padding: 4px 7px;
    background: rgba(255, 255, 255, 0.88);
    color: #071333;
    font-size: 10px;
}

.axa-demo-photo-strip .axa-demo-evidence-photo figcaption small {
    border-radius: 999px;
    padding: 3px 6px;
    background: rgba(7, 19, 51, 0.64);
    color: #ffffff;
    font-size: 10px;
    font-weight: 650;
}

.axa-demo-empty-state {
    grid-column: 1 / -1;
    border: 1px dashed #cbd7e8;
    border-radius: 10px;
    padding: 14px;
    background: #f8fafc;
    color: #66728a;
    font-size: 12px;
    font-weight: 650;
}

.axa-demo-ai-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    border: 1px solid var(--axa-line);
    border-radius: 10px;
    padding: 16px;
}

.axa-demo-ai-box strong {
    display: block;
    margin: 6px 0 14px;
    color: #071333;
    font-size: 16px;
    font-weight: 850;
}

.axa-demo-ai-box strong.is-orange {
    color: var(--axa-orange);
    font-size: 18px;
}

.axa-demo-ai-box ul {
    margin: 5px 0 0;
    padding-left: 17px;
    color: #071333;
    font-size: 12px;
}

.axa-demo-ai-meta,
.axa-demo-ai-detail-grid {
    display: grid;
    gap: 10px;
}

.axa-demo-ai-meta {
    grid-template-columns: repeat(4, minmax(0, max-content));
    align-items: center;
    margin-bottom: 12px;
    color: #66728a;
    font-size: 11px;
    font-weight: 750;
}

.axa-demo-analysis-note {
    margin: 14px 0 0;
    border-left: 3px solid var(--axa-blue);
    padding: 0 0 0 12px;
    color: #405070;
    font-size: 13px;
    line-height: 1.5;
}

.axa-demo-ai-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
}

.axa-demo-ai-detail-grid > div,
.axa-demo-ai-extracted {
    border: 1px solid var(--axa-line);
    border-radius: 10px;
    padding: 14px;
    background: #f8fafc;
}

.axa-demo-ai-detail-grid span,
.axa-demo-ai-extracted dt {
    color: #66728a;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
}

.axa-demo-ai-detail-grid p,
.axa-demo-ai-detail-grid ul {
    margin: 8px 0 0;
    color: #071333;
    font-size: 12px;
    line-height: 1.45;
}

.axa-demo-ai-detail-grid ul {
    padding-left: 17px;
}

.axa-demo-ai-extracted {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 14px 0 0;
}

.axa-demo-ai-extracted dd {
    margin: 4px 0 0;
    color: #071333;
    font-size: 12px;
    line-height: 1.4;
}

.axa-demo-purple-meter {
    width: 100%;
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: #e9edf5;
}

.axa-demo-purple-meter span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--axa-purple);
}

.axa-demo-transmission-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
}

.axa-demo-transmission-row svg,
.axa-demo-compliance li span {
    color: var(--axa-green);
}

.axa-demo-transmission-row p {
    margin: 0;
    color: #071333;
    font-size: 12px;
    line-height: 1.45;
}

.axa-demo-transmission-row p span,
.axa-demo-transmission-row strong span {
    color: #66728a;
    font-weight: 600;
}

.axa-demo-transmission-row strong {
    border-radius: 7px;
    padding: 6px 10px;
    background: #dbf5e6;
    color: #0c7438;
    font-size: 12px;
    text-align: center;
}

.axa-demo-compliance ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.axa-demo-document-list,
.axa-demo-checklist-list,
.axa-demo-event-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.axa-demo-document-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
    gap: 14px;
    align-items: start;
    margin-bottom: 12px;
    border: 1px solid #dce6f5;
    border-radius: 12px;
    padding: 12px;
    background: #f6f9ff;
}

.axa-demo-document-summary p {
    margin: 8px 0 0;
    color: #4d5a75;
    font-size: 12px;
    line-height: 1.45;
}

.axa-demo-document-summary dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.axa-demo-document-summary dt,
.axa-demo-document-fields dt {
    margin: 0;
    color: #66728a;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.axa-demo-document-summary dd,
.axa-demo-document-fields dd {
    margin: 2px 0 0;
    color: #071333;
    font-size: 12px;
    font-weight: 800;
}

.axa-demo-document-parser {
    display: grid;
    gap: 12px;
    margin-top: 12px;
    border-top: 1px solid #e8eef6;
    padding-top: 12px;
}

.axa-demo-document-parser-head,
.axa-demo-document-fields,
.axa-demo-document-lines {
    display: grid;
    gap: 10px;
}

.axa-demo-document-parser-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
}

.axa-demo-document-parser-head span,
.axa-demo-document-footnote,
.axa-demo-document-lines span {
    color: #66728a;
    font-size: 11px;
    font-weight: 700;
}

.axa-demo-document-parser-head strong {
    display: block;
    margin-top: 4px;
    color: #071333;
    font-size: 18px;
    font-weight: 850;
}

.axa-demo-document-fields {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.axa-demo-document-lines {
    margin: 0;
    padding: 0;
    list-style: none;
}

.axa-demo-document-lines li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    border: 1px solid #e8eef6;
    border-radius: 10px;
    padding: 10px 12px;
    background: #fbfdff;
}

.axa-demo-document-lines strong {
    color: #071333;
    font-size: 12px;
    font-weight: 850;
}

.axa-demo-document-footnote {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    line-height: 1.45;
}

.axa-demo-document-footnote span {
    border-radius: 999px;
    padding: 3px 7px;
    background: #f1f5fb;
    color: #405070;
}

.axa-demo-document-list li,
.axa-demo-checklist-list li,
.axa-demo-event-list li {
    border: 1px solid #e8eef6;
    border-radius: 10px;
    padding: 12px;
    background: #fbfdff;
}

.axa-demo-document-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.axa-demo-validation-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px;
    border: 1px solid #dce6f5;
    border-radius: 12px;
    padding: 12px;
    background: #f6f9ff;
}

.axa-demo-validation-summary > div:first-child {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.axa-demo-validation-summary strong {
    color: #071333;
    font-size: 13px;
    line-height: 1.35;
}

.axa-demo-validation-summary p {
    margin: 0;
    color: #4d5a75;
    font-size: 12px;
    line-height: 1.45;
}

.axa-demo-validation-summary dl {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 8px 12px;
    margin: 0;
    text-align: right;
}

.axa-demo-validation-summary dt {
    margin: 0;
    color: #66728a;
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
}

.axa-demo-validation-summary dd {
    margin: 2px 0 0;
    color: var(--axa-blue-900);
    font-size: 13px;
    font-weight: 850;
}

.axa-demo-document-list span,
.axa-demo-checklist-list strong,
.axa-demo-event-list strong {
    color: #071333;
    font-size: 12px;
    font-weight: 850;
}

.axa-demo-document-list strong,
.axa-demo-checklist-list small,
.axa-demo-event-list span {
    color: #66728a;
    font-size: 11px;
    font-weight: 650;
}

.axa-demo-checklist-list li {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
}

.axa-demo-checklist-list li > div {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.axa-demo-checklist-list small {
    display: block;
    line-height: 1.35;
}

.axa-demo-denuncia p {
    margin: 0;
    color: #26334d;
    font-size: 13px;
    line-height: 1.55;
}

.axa-demo-denuncia dl {
    display: grid;
    gap: 10px;
    margin: 14px 0 0;
}

.axa-demo-denuncia dt {
    margin: 0 0 3px;
    color: #66728a;
    font-size: 11px;
    font-weight: 750;
}

.axa-demo-denuncia dd {
    margin: 0;
    color: #071333;
    font-size: 12px;
    font-weight: 800;
}

.axa-demo-event-list li {
    display: grid;
    gap: 5px;
}

.axa-demo-timeline li {
    position: relative;
    padding-left: 34px;
}

.axa-demo-timeline li::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 12px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--axa-blue);
}

.axa-demo-timeline li.is-green::before {
    background: var(--axa-green);
}

.axa-demo-timeline li.is-orange::before {
    background: var(--axa-orange);
}

.axa-demo-timeline li > span {
    color: var(--axa-blue);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
}

.axa-demo-timeline li em {
    color: #66728a;
    font-size: 11px;
    font-style: normal;
    font-weight: 650;
}

.axa-demo-event-list p {
    margin: 0;
    color: #4d5a75;
    font-size: 12px;
    line-height: 1.45;
}

.axa-demo-compliance li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    color: #071333;
    font-size: 12px;
}

.axa-demo-compliance li span {
    display: block;
    width: 14px;
    height: 14px;
    border: 1.5px solid currentColor;
    border-radius: 999px;
}

.axa-demo-compliance li strong {
    display: block;
    font-weight: 750;
}

.axa-demo-compliance li small {
    display: block;
    margin-top: 3px;
    color: #66728a;
    font-size: 11px;
    line-height: 1.35;
}

.axa-demo-journey-steps {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.axa-demo-journey-steps li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    border: 1px solid #e8eef6;
    border-radius: 10px;
    padding: 11px;
    background: #fbfdff;
}

.axa-demo-journey-steps li > span {
    display: block;
    width: 13px;
    height: 13px;
    border-radius: 999px;
    background: #cbd7e8;
}

.axa-demo-journey-steps li.is-done > span {
    background: var(--axa-green);
}

.axa-demo-journey-steps li.is-current > span {
    background: var(--axa-blue);
    box-shadow: 0 0 0 4px rgba(0, 51, 153, 0.12);
}

.axa-demo-journey-steps li.is-attention > span {
    background: var(--axa-orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.axa-demo-journey-steps strong {
    display: block;
    color: #071333;
    font-size: 12px;
    font-weight: 850;
}

.axa-demo-journey-steps small,
.axa-demo-journey-steps em {
    color: #66728a;
    font-size: 11px;
    font-style: normal;
    font-weight: 650;
}

.axa-demo-journey-steps em {
    white-space: nowrap;
}

.axa-demo-backtesting {
    margin-top: 14px;
}

.axa-demo-backtesting-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(90px, 120px)) minmax(280px, 1fr);
    gap: 18px;
    align-items: end;
}

.axa-demo-backtesting-grid strong {
    display: block;
    margin-top: 8px;
    color: var(--axa-blue);
    font-size: 22px;
    font-weight: 850;
}

.axa-demo-backtesting-grid strong.is-purple {
    color: var(--axa-purple);
}

.axa-demo-backtesting-grid strong.is-green {
    color: var(--axa-green);
}

.axa-demo-backtesting-grid svg {
    width: 100%;
    height: 95px;
}

.axa-demo-backtesting-grid svg path {
    stroke: #e4eaf3;
    stroke-width: 1;
}

.axa-demo-backtesting-grid svg polyline {
    fill: none;
    stroke: #806dff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.axa-demo-backtesting-table {
    margin-top: 16px;
}

@keyframes axa-demo-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1180px) {
    .axa-demo-kpis,
    .axa-demo-dashboard-grid,
    .axa-demo-alert-board {
        grid-template-columns: 1fr 1fr;
    }

    .axa-demo-operator-hero {
        grid-template-columns: 1fr;
    }

    .axa-demo-brief-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .axa-demo-backtesting-grid {
        grid-template-columns: repeat(2, minmax(90px, 1fr));
    }

    .axa-demo-backtesting-grid svg {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .axa-demo-customer-shell {
        display: block;
        padding: 0;
        background: #edf3fa;
    }

    .axa-demo-customer-phone {
        width: 100%;
        min-height: 100vh;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .axa-demo-appbar {
        height: auto;
        min-height: 74px;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 14px 16px;
    }

    .axa-demo-appbrand,
    .axa-demo-login-brand {
        font-size: 17px;
    }

    .axa-demo-appbrand .axa-demo-logo-mark,
    .axa-demo-login-brand .axa-demo-logo-mark {
        width: 36px;
        height: 36px;
        border-radius: 7px;
    }

    .axa-demo-customer-head {
        padding: 0 16px;
    }

    .axa-demo-customer-head a {
        gap: 10px;
        font-size: 17px;
    }

    .axa-demo-customer-head .axa-demo-logo-mark {
        width: 34px;
        height: 34px;
    }

    .axa-demo-app-actions {
        display: none;
    }

    .axa-demo-workspace {
        display: block;
    }

    .axa-demo-side-nav {
        display: none;
    }

    .axa-demo-main {
        padding: 18px 16px 28px;
    }

    .axa-demo-page-head-row {
        display: grid;
    }

    .axa-demo-reset-form,
    .axa-demo-reset-button,
    .axa-demo-page-actions,
    .axa-demo-primary-action {
        width: 100%;
    }

    .axa-demo-page-actions {
        display: grid;
    }

    .axa-demo-mobile-menu {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 18px;
        border-radius: 999px;
        padding: 12px 16px;
        background: #ffffff;
        box-shadow: 0 8px 18px rgba(7, 19, 51, 0.08);
        color: #1d2a44;
        font-size: 15px;
        font-weight: 850;
    }

    .axa-demo-mobile-menu span {
        width: 16px;
        height: 2px;
    }

    .axa-demo-page-head h1 {
        font-size: 23px;
    }

    .axa-demo-kpis,
    .axa-demo-dashboard-grid,
    .axa-demo-alert-board,
    .axa-demo-operator-hero,
    .axa-demo-brief-meta,
    .axa-demo-selected dl,
    .axa-demo-ai-box,
    .axa-demo-ai-meta,
    .axa-demo-ai-detail-grid,
    .axa-demo-ai-extracted,
    .axa-demo-backtesting-grid {
        grid-template-columns: 1fr;
    }

    .axa-demo-operator-brief h2 {
        font-size: 20px;
    }

    .axa-demo-stat {
        min-height: 118px;
    }

    .axa-demo-photo-strip {
        grid-template-columns: repeat(3, minmax(76px, 1fr));
    }

    .axa-demo-photo-guidance-grid {
        grid-template-columns: 1fr;
    }

    .axa-demo-transmission-row {
        grid-template-columns: auto 1fr;
    }

    .axa-demo-transmission-row strong {
        grid-column: 1 / -1;
    }

    .axa-demo-validation-summary {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .axa-demo-document-summary,
    .axa-demo-document-parser-head,
    .axa-demo-document-fields {
        grid-template-columns: 1fr;
    }

    .axa-demo-validation-summary dl {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        text-align: left;
    }

    .axa-demo-checklist-list li,
    .axa-demo-document-list li,
    .axa-demo-journey-steps li {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .axa-demo-journey-steps em {
        white-space: normal;
    }
}


.axa-demo-public {
    --axa-blue: #001f7a;
    --axa-blue-2: #0033a0;
    --axa-red: #f21b2d;
    --axa-ink: #071536;
    --axa-muted: #64708b;
    --axa-line: #d8e0ef;
    --axa-soft: #f5f7fb;
    width: min(1180px, calc(100vw - 28px));
    margin: 0 auto;
    padding: 24px 0 32px;
    color: var(--axa-ink);
}

.axa-demo-public-head,
.axa-demo-dashboard-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.axa-demo-public-head {
    margin-bottom: 22px;
}

.axa-demo-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--axa-blue);
    font-weight: 800;
    font-size: 1.08rem;
}

.axa-demo-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(0, 31, 122, 0.18);
    border-radius: 999px;
    background: #eef4ff;
    color: var(--axa-blue);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0;
}

.axa-demo-head-nav,
.axa-demo-dashboard-actions,
.axa-demo-nav-stack,
.button-row.axa-demo-dashboard-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.axa-demo-head-nav a,
.axa-demo-nav-stack a {
    color: var(--axa-blue);
    font-weight: 700;
    font-size: 0.9rem;
}

.axa-demo-public-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 420px);
    align-items: start;
    gap: 28px;
}

.axa-demo-story-panel {
    display: grid;
    gap: 18px;
    padding: 36px 0;
}

.axa-demo-demo-label {
    display: inline-flex;
    width: fit-content;
    padding: 6px 10px;
    border: 1px solid rgba(0, 31, 122, 0.16);
    border-radius: 999px;
    color: var(--axa-blue);
    background: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.axa-demo-story-panel h1,
.axa-demo-dashboard-hero h2 {
    margin: 0;
    color: var(--axa-blue);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
}

.axa-demo-story-panel p,
.axa-demo-dashboard-hero p {
    max-width: 640px;
    margin: 0;
    color: var(--axa-muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.axa-demo-link-card,
.axa-demo-phone,
.axa-demo-card,
.axa-demo-kpi-card {
    border: 1px solid rgba(216, 224, 239, 0.92);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 60px rgba(7, 21, 54, 0.08);
}

.axa-demo-link-card {
    display: grid;
    gap: 6px;
    max-width: 420px;
    padding: 18px;
    border-radius: 18px;
}

.axa-demo-link-card span,
.axa-demo-link-card small {
    color: var(--axa-muted);
}

.axa-demo-link-card strong {
    color: var(--axa-ink);
    font-size: 1.18rem;
}

.axa-demo-nav-stack {
    align-items: stretch;
    flex-direction: column;
}

.axa-demo-nav-stack a {
    display: flex;
    justify-content: space-between;
    padding: 12px 14px;
    border: 1px solid rgba(0, 31, 122, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
}

.axa-demo-phone {
    overflow: hidden;
    border-radius: 28px;
    min-height: 720px;
}

.axa-demo-phone-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px 20px 14px;
    border-bottom: 1px solid var(--axa-line);
}

.axa-demo-phone-top > div {
    display: grid;
    gap: 3px;
}

.axa-demo-phone-brand {
    color: var(--axa-blue);
    font-weight: 900;
}

.axa-demo-lock {
    padding: 6px 10px;
    border-radius: 999px;
    background: #eaf8f0;
    color: #087443;
    font-weight: 800;
    font-size: 0.78rem;
}

.axa-demo-progress {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin: 0;
    padding: 14px 18px 4px;
    list-style: none;
}

.axa-demo-progress li {
    display: grid;
    justify-items: center;
    gap: 6px;
    color: var(--axa-muted);
    font-size: 0.74rem;
    font-weight: 800;
}

.axa-demo-progress li::before {
    content: "";
    display: block;
    width: 24px;
    height: 6px;
    border-radius: 999px;
    background: #ccd5e6;
}

.axa-demo-progress li.is-active {
    color: var(--axa-blue);
}

.axa-demo-progress li.is-active::before {
    background: linear-gradient(90deg, var(--axa-blue), var(--axa-blue-2));
}

.axa-demo-screen {
    display: grid;
    gap: 18px;
    padding: 20px;
}

.axa-demo-screen[hidden],
.axa-demo-photo-step[hidden] {
    display: none;
}

.axa-demo-screen-copy {
    display: grid;
    gap: 8px;
}

.axa-demo-screen-copy h2,
.axa-demo-photo-step h3,
.axa-demo-card h2 {
    margin: 0;
    color: var(--axa-ink);
    line-height: 1.15;
}

.axa-demo-screen-copy p,
.axa-demo-photo-step p,
.axa-demo-ai-note p {
    margin: 0;
    color: var(--axa-muted);
    line-height: 1.58;
}

.axa-demo-claim-card {
    padding: 16px;
    border-radius: 18px;
    background: var(--axa-soft);
    border: 1px solid var(--axa-line);
}

.axa-demo-claim-card dl,
.axa-demo-success-card dl,
.axa-demo-detail-list,
.axa-demo-info-list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.axa-demo-claim-card dl div,
.axa-demo-success-card dl div,
.axa-demo-detail-list div,
.axa-demo-info-list div {
    display: grid;
    gap: 3px;
}

.axa-demo-claim-card dt,
.axa-demo-success-card dt,
.axa-demo-detail-list dt,
.axa-demo-info-list dt {
    color: var(--axa-muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.axa-demo-claim-card dd,
.axa-demo-success-card dd,
.axa-demo-detail-list dd,
.axa-demo-info-list dd {
    margin: 0;
    color: var(--axa-ink);
    font-weight: 800;
}

.axa-demo-security-note,
.axa-demo-ai-note {
    display: grid;
    gap: 5px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff8e8;
    border: 1px solid rgba(245, 158, 11, 0.28);
}

.axa-demo-security-note span,
.axa-demo-ai-note small {
    color: #7a5505;
}

.axa-demo-wide-button {
    justify-content: center;
    min-height: 52px;
}

.axa-demo-field-card {
    padding: 14px;
}

.axa-demo-category-grid {
    display: grid;
    gap: 10px;
}

.axa-demo-category-chip {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--axa-line);
    border-radius: 14px;
    background: #fff;
    color: var(--axa-ink);
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.axa-demo-category-chip.is-selected {
    color: var(--axa-blue);
    border-color: rgba(0, 51, 160, 0.34);
    background: #eff4ff;
}

.axa-demo-photo-counter,
.axa-demo-photo-step-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.axa-demo-photo-counter {
    padding: 10px 12px;
    border-radius: 14px;
    background: #f1f5ff;
    color: var(--axa-blue);
    font-weight: 800;
}

.axa-demo-photo-step {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--axa-line);
    border-radius: 18px;
    background: #fff;
}

.axa-demo-photo-step.is-missing-required {
    border-color: rgba(242, 27, 45, 0.72);
    box-shadow: 0 0 0 4px rgba(242, 27, 45, 0.12);
}

.axa-demo-upload-zone {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.axa-demo-file-button {
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.axa-demo-file-button input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.axa-demo-preview {
    display: grid;
    place-items: center;
    min-height: 190px;
    gap: 8px;
    padding: 16px;
    border: 1px dashed #afbbd0;
    border-radius: 18px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef3ff 100%);
    color: var(--axa-muted);
    text-align: center;
}

.axa-demo-preview.has-photo {
    border-style: solid;
    background: #fff;
}

.axa-demo-preview.is-photo-rejected {
    border-color: #f1d1a6;
    background: #fff8ed;
}

.axa-demo-preview.is-photo-unavailable {
    border-style: solid;
    border-color: #b8dfcf;
    background: #f0fbf6;
}

.axa-demo-preview img {
    width: 100%;
    max-height: 210px;
    object-fit: cover;
    border-radius: 14px;
}

.axa-demo-preview.is-generating-photo {
    border-style: solid;
    border-color: rgba(0, 51, 160, 0.22);
    background: #f8fbff;
}

.axa-demo-preview-loader {
    display: inline-block;
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    border: 4px solid rgba(0, 51, 160, 0.16);
    border-top-color: var(--axa-blue);
    border-right-color: #f08a24;
    border-radius: 999px;
    background: transparent;
    animation: axa-demo-spin 720ms linear infinite;
}

.axa-demo-preview-visual,
.axa-demo-photo-thumb span {
    display: block;
    width: 100%;
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(0, 31, 122, 0.2), transparent 42%),
        linear-gradient(160deg, #f4f0e9 0%, #d9c8ad 44%, #8f7657 45%, #cbb89a 100%);
}

.axa-demo-preview-visual {
    min-height: 150px;
}

.axa-demo-choice-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--axa-line);
    border-radius: 16px;
    background: #fff;
}

.axa-demo-choice-row label:not(.field-label) {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--axa-ink);
    font-weight: 800;
}

.axa-demo-info-form {
    display: grid;
    gap: 12px;
}

.axa-demo-transmission-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.axa-demo-transmission-list li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--axa-line);
    border-radius: 16px;
    background: #fff;
    color: var(--axa-muted);
}

.axa-demo-transmission-list li span {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 2px solid #b8c3d7;
}

.axa-demo-transmission-list li.is-active {
    color: var(--axa-blue);
    border-color: rgba(0, 51, 160, 0.34);
}

.axa-demo-transmission-list li.is-active span {
    border-color: var(--axa-blue);
    border-top-color: transparent;
    animation: axa-demo-spin 0.8s linear infinite;
}

.axa-demo-transmission-list li.is-complete {
    color: #087443;
    background: #ecfdf5;
    border-color: rgba(8, 116, 67, 0.2);
}

.axa-demo-transmission-list li.is-complete span {
    border-color: #087443;
    background: #087443;
}

.axa-demo-success-card {
    display: grid;
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ecfdf5 0%, #ffffff 100%);
    border: 1px solid rgba(8, 116, 67, 0.22);
}

.axa-demo-success-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #087443;
    color: #fff;
    font-weight: 900;
}

.axa-demo-success-card h2 {
    margin: 0;
    color: #075536;
}

.axa-demo-dashboard {
    display: grid;
    gap: 20px;
}

.axa-demo-dashboard-hero {
    padding: 24px;
    border: 1px solid rgba(216, 224, 239, 0.9);
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f6ff 100%);
}

.axa-demo-dashboard-hero > div:first-child {
    display: grid;
    gap: 10px;
}

.axa-demo-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.axa-demo-kpi-card {
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 18px;
    color: var(--text);
}

.axa-demo-kpi-card span,
.axa-demo-kpi-card small {
    color: var(--muted);
}

.axa-demo-kpi-card strong {
    font-size: 2rem;
    color: #001f7a;
    line-height: 1;
}

.axa-demo-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.8fr);
    gap: 18px;
    align-items: start;
}

.axa-demo-dashboard-grid-detail {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.axa-demo-card {
    border-radius: 22px;
}

.axa-demo-table-shell table {
    min-width: 720px;
}

.axa-demo-table-shell tr.is-selected td {
    background: #f3f6ff;
}

.axa-demo-meter {
    width: 100%;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #e3e9f5;
}

.axa-demo-meter span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #001f7a, #0b56d8);
}

.axa-demo-meter-ai span {
    background: linear-gradient(90deg, #6d5dfc, #a855f7);
}

.axa-demo-detail-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.axa-demo-detail-list div:nth-child(1),
.axa-demo-detail-list div:nth-child(5),
.axa-demo-detail-list div:nth-child(6) {
    grid-column: 1 / -1;
}

.axa-demo-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.axa-demo-photo-thumb {
    display: grid;
    gap: 8px;
    margin: 0;
}

.axa-demo-photo-thumb span {
    min-height: 132px;
}

.axa-demo-photo-thumb figcaption {
    color: var(--ink-800);
    font-weight: 800;
    font-size: 0.82rem;
}

.axa-demo-photo-tone-damage span {
    background:
        linear-gradient(145deg, rgba(94, 58, 28, 0.64), transparent 38%),
        linear-gradient(160deg, #ede8df 0%, #c4b095 52%, #6f543a 53%, #ded2c2 100%);
}

.axa-demo-photo-tone-origin span {
    background:
        linear-gradient(110deg, transparent 0 45%, rgba(0, 31, 122, 0.25) 46% 52%, transparent 53%),
        linear-gradient(135deg, #f6f1e9, #b7a081);
}

.axa-demo-photo-tone-ceiling span {
    background:
        radial-gradient(circle at 55% 34%, rgba(112, 83, 55, 0.58), transparent 22%),
        linear-gradient(180deg, #f5f2ed, #d8cbb9);
}

.axa-demo-photo-tone-goods span {
    background:
        linear-gradient(90deg, rgba(0, 31, 122, 0.2), transparent 30%),
        linear-gradient(135deg, #d6e2f3, #9e8768);
}

.axa-demo-photo-tone-document span {
    background:
        linear-gradient(90deg, transparent 0 12%, rgba(0, 31, 122, 0.12) 13% 14%, transparent 15% 100%),
        linear-gradient(180deg, #ffffff, #e7edf8);
}

.axa-demo-photo-tone-weather span {
    background:
        linear-gradient(135deg, rgba(0, 31, 122, 0.36), transparent 50%),
        linear-gradient(180deg, #b9c8de, #7589a7);
}

.axa-demo-info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.axa-demo-info-list div:nth-child(n+6) {
    grid-column: 1 / -1;
}

.axa-demo-ai-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.axa-demo-ai-grid > div {
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 16px;
    background: #f7f9fc;
    border: 1px solid rgba(216, 224, 239, 0.78);
}

.axa-demo-ai-grid span {
    color: var(--muted);
    font-weight: 800;
    font-size: 0.8rem;
}

.axa-demo-ai-grid strong {
    color: #001f7a;
    font-size: 1.28rem;
}

.axa-demo-compliance-list {
    display: grid;
    gap: 10px;
}

.axa-demo-compliance-list div {
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 14px;
    background: #f7f9fc;
    border: 1px solid rgba(216, 224, 239, 0.74);
}

.axa-demo-compliance-list strong {
    color: var(--text-strong);
}

.axa-demo-compliance-list span {
    color: var(--muted);
    font-size: 0.9rem;
}

@keyframes axa-demo-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1180px) {
    .axa-demo-kpi-grid,
    .axa-demo-dashboard-grid,
    .axa-demo-dashboard-grid-detail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .axa-demo-public-head,
    .axa-demo-dashboard-hero {
        flex-direction: column;
    }

    .axa-demo-public-grid,
    .axa-demo-dashboard-grid,
    .axa-demo-dashboard-grid-detail,
    .axa-demo-kpi-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .axa-demo-story-panel {
        padding: 10px 0;
        order: 2;
    }

    .axa-demo-phone {
        min-height: 0;
        order: 1;
    }
}

@media (max-width: 640px) {
    .axa-demo-public {
        width: min(100vw - 16px, 480px);
        padding-top: 8px;
    }

    .axa-demo-public-head {
        margin-bottom: 10px;
    }

    .axa-demo-head-nav,
    .axa-demo-dashboard-actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .axa-demo-head-nav {
        display: none;
    }

    .axa-demo-dashboard-actions > *,
    .axa-demo-head-nav a {
        width: 100%;
        justify-content: center;
    }

    .axa-demo-story-panel h1,
    .axa-demo-dashboard-hero h2 {
        font-size: 2rem;
    }

    .axa-demo-screen,
    .axa-demo-phone-top {
        padding-left: 14px;
        padding-right: 14px;
    }

    .axa-demo-screen {
        gap: 14px;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .axa-demo-phone-top {
        padding-top: 16px;
        padding-bottom: 10px;
    }

    .axa-demo-progress {
        gap: 5px;
        padding: 10px 10px 2px;
    }

    .axa-demo-screen-copy {
        gap: 6px;
    }

    .axa-demo-screen-copy h2 {
        font-size: 1.35rem;
    }

    .axa-demo-screen-copy p {
        line-height: 1.48;
    }

    .axa-demo-claim-card {
        padding: 12px;
    }

    .axa-demo-claim-card dl {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .axa-demo-claim-card dl div:first-child dd {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .axa-demo-security-note {
        padding: 12px;
    }

    .axa-demo-upload-zone,
    .axa-demo-choice-row,
    .axa-demo-detail-list,
    .axa-demo-info-list,
    .axa-demo-ai-grid,
    .axa-demo-photo-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .axa-demo-choice-row .field-label {
        margin-bottom: 2px;
    }

    .axa-demo-kpi-card strong {
        font-size: 1.65rem;
    }

    .axa-demo-dashboard-hero,
    .axa-demo-card {
        border-radius: 18px;
    }
}

@media (max-width: 720px) {
    .axa-feedback-action-list article > div {
        align-items: stretch;
        flex-direction: column;
    }

}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .axa-demo-preview-loader {
        animation-duration: 720ms !important;
        animation-iteration-count: infinite !important;
    }
}

@media print {
    body {
        background: #fff;
    }

    .print-toolbar {
        display: none;
    }

    .print-page {
        padding: 0;
        max-width: 100%;
    }

    .page-break {
        page-break-before: always;
    }

    .table-shell {
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .table-shell .data-table {
        min-width: 0;
        width: 100%;
    }

    .print-intro-card,
    .print-note-card,
    .print-highlight-card,
    .print-signoff-note,
    .print-signoff-box,
    .liquidation-card,
    .print-block,
    .matrix-chapter-total {
        break-inside: avoid;
    }
}

/* Final AXA demo overrides: keep the mockup-aligned customer flow ahead of base AXA styles. */
.auth-body[data-route="customer/demo-link"] .axa-demo-screen {
    display: block;
    padding: 18px 22px 26px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-screen[hidden],
.auth-body[data-route="customer/demo-link"] .axa-demo-photo-step[hidden] {
    display: none !important;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-photo-step {
    display: block;
    padding: 14px;
    border: 1px solid var(--axa-line);
    border-radius: var(--axa-radius);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(7, 19, 51, 0.04);
}

.auth-body[data-route="customer/demo-link"] .axa-demo-preview {
    display: grid;
    min-height: 118px;
    margin-top: 14px;
    place-items: center;
    border: 1px solid var(--axa-line);
    border-radius: 10px;
    background: #f8fafc;
    color: #66728a;
    text-align: center;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-preview.has-photo {
    padding: 10px;
    border-color: var(--axa-line);
    background: #ffffff;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-preview.has-multiple-photos {
    align-items: stretch;
    justify-items: stretch;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-preview.is-photo-rejected {
    border-color: #f1d1a6;
    background: #fff8ed;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-slot-photo-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-slot-photo-tile {
    display: grid;
    min-width: 0;
    gap: 5px;
    align-content: start;
    padding: 7px;
    border: 1px solid #d8e1ee;
    border-radius: 8px;
    background: #f8fafc;
    text-align: left;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-slot-photo-tile.is-accepted {
    border-color: #bbdbc6;
    background: #f2fbf5;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-slot-photo-tile.is-uploading,
.auth-body[data-route="customer/demo-link"] .axa-demo-slot-photo-tile.is-pending {
    border-color: #bfd1ee;
    background: #f1f6ff;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-slot-photo-tile.is-invalid {
    border-color: #f1d1a6;
    background: #fff8ed;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-slot-photo-tile img,
.auth-body[data-route="customer/demo-link"] .axa-demo-preview > img {
    width: 100%;
    height: 118px;
    object-fit: cover;
    border-radius: 8px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-slot-photo-tile strong,
.auth-body[data-route="customer/demo-link"] .axa-demo-preview > strong {
    overflow-wrap: anywhere;
    color: #071333;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.2;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-slot-photo-tile small,
.auth-body[data-route="customer/demo-link"] .axa-demo-preview > small {
    color: #5f6d84;
    font-size: 11px;
    line-height: 1.25;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-slot-photo-tile .axa-demo-photo-delete {
    width: 100%;
    min-height: 32px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-slot-photo-count {
    display: block;
    margin-top: 8px;
    text-align: left;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-preview-visual {
    display: block;
    width: 100%;
    height: 118px;
    border-radius: 8px;
    background-image: var(--axa-photo-sheet);
    background-repeat: no-repeat;
    background-size: 300% 200%;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-transmission-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-transmission-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--axa-line);
    border-radius: 10px;
    padding: 14px;
    color: #536179;
    font-size: 14px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-transmission-list li span {
    display: block;
    width: 22px;
    height: 22px;
    border: 2px solid #b9c5d7;
    border-radius: 999px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-transmission-list li.is-active span {
    border-color: var(--axa-blue);
    border-top-color: transparent;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-transmission-list li.is-complete span {
    border-color: var(--axa-green);
    background: var(--axa-green);
}

.auth-body[data-route="customer/demo-link"] .axa-demo-ai-wait-dialog .axa-demo-final-transmission-list {
    gap: 8px;
    margin: 2px 0 0;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-ai-wait-dialog .axa-demo-final-transmission-list li {
    min-height: 44px;
    padding: 10px 11px;
    border-radius: 10px;
    background: #ffffff;
    font-size: 12.5px;
    font-weight: 850;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-ai-wait-dialog .axa-demo-final-transmission-list li span {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-ai-wait-dialog .axa-demo-final-transmission-list li.is-active {
    color: var(--axa-blue);
    border-color: rgba(0, 51, 153, 0.32);
    background: #f7fbff;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-ai-wait-dialog .axa-demo-final-transmission-list li.is-active span {
    animation: axa-demo-spin 0.8s linear infinite;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-ai-wait-dialog .axa-demo-final-transmission-list li.is-complete {
    color: #087443;
    border-color: rgba(8, 116, 67, 0.22);
    background: #ecfdf5;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-customer-head {
    min-height: 52px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-screen {
    padding: 15px 22px 18px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-claim-summary-card {
    margin-top: 12px;
    padding: 12px 16px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-claim-summary-card > strong {
    margin-top: 6px;
    font-size: 17px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-claim-summary-card dl,
.auth-body[data-route="customer/demo-link"] .axa-demo-customer-info-card dl {
    gap: 10px;
    margin-top: 13px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-claim-summary-card dt,
.auth-body[data-route="customer/demo-link"] .axa-demo-customer-info-card dt {
    gap: 8px;
    margin-bottom: 2px;
    font-size: 11px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-claim-summary-card dd,
.auth-body[data-route="customer/demo-link"] .axa-demo-customer-info-card dd {
    font-size: 13px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-stepper {
    margin: 12px 0 17px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-stepper li {
    gap: 5px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-upload-drop {
    margin-top: 10px;
    padding: 16px 12px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-preview-block {
    margin-top: 9px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-preview-block .axa-demo-evidence-photo {
    width: 140px;
    height: 92px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-customer-info-card {
    margin-top: 12px;
    padding: 12px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-primary-cta {
    margin-top: 12px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-intro-actions {
    margin-top: 8px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-intro-actions .axa-demo-primary-cta {
    margin-top: 0;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-voice-dock {
    padding-top: 8px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-intro-actions .axa-demo-voice-dock {
    padding-top: 0;
}

.axa-demo-stat {
    justify-content: flex-start;
}

.axa-demo-ring {
    margin-left: auto;
}

.axa-demo-photo-strip .axa-demo-evidence-photo {
    height: 122px;
    aspect-ratio: auto;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-customer-copy h1 {
    font-size: 17px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-customer-copy p {
    margin-top: 6px;
    line-height: 1.36;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-upload-drop {
    padding: 13px 12px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-upload-drop svg {
    width: 25px;
    height: 25px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-preview-block .axa-demo-evidence-photo {
    width: 132px;
    height: 82px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-customer-info-card dl {
    gap: 7px;
    margin-top: 9px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-customer-info-card {
    padding: 10px 12px;
}

.auth-body[data-route="admin/axa-demo"] .axa-demo-main {
    padding: 20px 26px;
}

.auth-body[data-route="admin/axa-demo"] .axa-demo-kpis {
    gap: 18px;
    margin-top: 18px;
}

.auth-body[data-route="admin/axa-demo"] .axa-demo-stat {
    min-height: 112px;
    padding: 16px;
}

.auth-body[data-route="admin/axa-demo"] .axa-demo-dashboard-grid {
    gap: 12px;
    margin-top: 12px;
}

.auth-body[data-route="admin/axa-demo"] .axa-demo-panel {
    padding: 14px;
}

.auth-body[data-route="admin/axa-demo"] .axa-demo-table-wrap th,
.auth-body[data-route="admin/axa-demo"] .axa-demo-table-wrap td {
    padding: 10px;
}

.auth-body[data-route="admin/axa-demo"] .axa-demo-photo-strip .axa-demo-evidence-photo {
    height: 106px;
}

.auth-body[data-route="admin/axa-demo"] .axa-demo-backtesting {
    margin-top: 12px;
}

@media (max-width: 900px) {
    .axa-demo-register-grid,
    .axa-demo-welcome-secondary-actions {
        grid-template-columns: 1fr;
    }

    .auth-body[data-route="admin/axa-demo-login"] .flash-stack {
        width: calc(100% - 32px);
        margin: 14px auto 0;
    }

    .axa-demo-login-topbar {
        min-height: 56px;
        padding: 0 18px;
    }

    .axa-demo-login-brand {
        gap: 10px;
        font-size: 17px;
    }

    .axa-demo-login-brand .axa-demo-logo-mark {
        width: 34px;
        height: 34px;
    }

    .axa-demo-login-brand i {
        width: 8px;
        height: 26px;
    }

    .axa-demo-login-customer {
        font-size: 12px;
    }

    .axa-demo-login-grid {
        display: block;
        width: calc(100% - 32px);
        margin: 22px auto;
    }

    .axa-demo-login-card {
        padding: 22px;
        border-radius: 14px;
    }

    .axa-demo-login-card h1 {
        font-size: 25px;
    }

    .axa-demo-login-preview {
        margin-top: 16px;
        padding: 18px;
    }

    .axa-demo-login-preview::before {
        display: none;
    }

    .axa-demo-login-preview > * {
        margin-left: 0;
    }

    .axa-demo-login-preview-head span {
        font-size: 19px;
    }

    .axa-demo-login-preview-kpis {
        grid-template-columns: 1fr;
    }

    .axa-demo-login-preview-head,
    .axa-demo-login-preview-kpis,
    .axa-demo-login-preview-photos,
    .axa-demo-login-preview-chart {
        display: none;
    }

    .axa-demo-login-preview-photos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

/* AXA control dashboard: lean operator review surface. */
.axa-control-app {
    --axa-control-blue: #003399;
    --axa-control-red: #ff172f;
    --axa-control-ink: #101828;
    --axa-control-muted: #667085;
    --axa-control-line: #d7deea;
    --axa-control-soft: #f6f8fb;
    --axa-control-green: #0f8a4b;
    --axa-control-orange: #c85f0d;
    --axa-control-purple: #6941c6;
    --axa-control-teal: #0e9384;
    min-height: 100vh;
    background: #f3f6fa;
    color: var(--axa-control-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

.axa-control-app *,
.axa-control-app *::before,
.axa-control-app *::after {
    box-sizing: border-box;
}

.axa-control-topbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    min-height: 64px;
    padding: 0 28px;
    border-bottom: 1px solid var(--axa-control-line);
    background: #ffffff;
}

.axa-control-brand,
.axa-control-actions,
.axa-control-actions a {
    display: inline-flex;
    align-items: center;
}

.axa-control-brand {
    gap: 10px;
    color: var(--axa-control-blue);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.axa-control-brand img {
    width: 34px;
    height: 34px;
    border-radius: 7px;
}

.axa-control-actions {
    gap: 10px;
}

.axa-control-actions a,
.axa-control-form-actions a,
.axa-control-document-list a {
    min-height: 34px;
    padding: 8px 11px;
    border: 1px solid var(--axa-control-line);
    border-radius: 7px;
    background: #ffffff;
    color: var(--axa-control-blue);
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.axa-control-main {
    width: min(1360px, calc(100% - 36px));
    margin: 0 auto;
    padding: 26px 0 42px;
}

.axa-control-page-head,
.axa-control-section-head,
.axa-control-form-actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.axa-control-page-head {
    margin-bottom: 18px;
}

.axa-control-form-actions {
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.axa-control-page-head h1,
.axa-control-section-head h2,
.axa-control-section-head h3 {
    margin: 0;
    color: var(--axa-control-ink);
    line-height: 1.12;
}

.axa-control-page-head h1 {
    font-size: 28px;
    font-weight: 850;
}

.axa-control-page-head p,
.axa-control-page-head > span,
.axa-control-section-head > span,
.axa-control-empty,
.axa-control-ai-grid small,
.axa-control-photo-card span,
.axa-control-document-list span {
    color: var(--axa-control-muted);
    font-size: 13px;
    line-height: 1.45;
}

.axa-control-page-head p {
    margin: 6px 0 0;
}

.axa-control-kpi-panel {
    margin-bottom: 14px;
    padding: 14px;
    border: 1px solid var(--axa-control-line);
    border-radius: 8px;
    background: #ffffff;
}

.axa-control-kpi-groups {
    display: grid;
    gap: 8px;
}

.axa-control-kpi-group {
    --damage-accent: var(--axa-control-blue);
    --damage-bg: #eef3ff;
    --damage-border: #d9e4ff;
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: 0;
    align-items: center;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--damage-border);
    border-left: 5px solid var(--damage-accent);
    border-radius: 8px;
    background: linear-gradient(90deg, var(--damage-bg) 0%, #ffffff 44%);
}

.axa-control-kpi-group.is-tone-red,
.axa-control-damage-pill.is-tone-red {
    --damage-accent: var(--axa-control-red);
    --damage-bg: #fff0f3;
    --damage-border: #ffd6df;
}

.axa-control-kpi-group.is-tone-green,
.axa-control-damage-pill.is-tone-green {
    --damage-accent: var(--axa-control-green);
    --damage-bg: #ecfdf3;
    --damage-border: #c9f2db;
}

.axa-control-kpi-group.is-tone-purple,
.axa-control-damage-pill.is-tone-purple {
    --damage-accent: var(--axa-control-purple);
    --damage-bg: #f3efff;
    --damage-border: #ded3ff;
}

.axa-control-kpi-group.is-tone-orange,
.axa-control-damage-pill.is-tone-orange {
    --damage-accent: var(--axa-control-orange);
    --damage-bg: #fff6ed;
    --damage-border: #fedfc2;
}

.axa-control-kpi-group.is-tone-teal,
.axa-control-damage-pill.is-tone-teal {
    --damage-accent: var(--axa-control-teal);
    --damage-bg: #edfbf8;
    --damage-border: #c7eee7;
}

.axa-control-kpi-group.is-tone-blue,
.axa-control-damage-pill.is-tone-blue {
    --damage-accent: var(--axa-control-blue);
    --damage-bg: #eef3ff;
    --damage-border: #d9e4ff;
}

.axa-control-damage-pill.is-tone-neutral {
    --damage-accent: #475467;
    --damage-bg: #f2f4f7;
    --damage-border: #e4e7ec;
}

.axa-control-kpi-type {
    display: flex;
    gap: 10px;
    align-items: center;
    min-width: 0;
    min-height: 62px;
    padding: 11px 14px;
    color: var(--damage-accent);
    font-size: 15px;
    font-weight: 850;
    line-height: 1.25;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.axa-control-damage-dot {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--damage-accent);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--damage-accent) 14%, transparent);
}

.axa-control-kpis {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    border-left: 1px solid var(--damage-border);
}

.axa-control-panel {
    border: 1px solid var(--axa-control-line);
    border-radius: 8px;
    background: #ffffff;
}

.axa-control-kpis > div {
    display: grid;
    gap: 5px;
    min-height: 62px;
    padding: 10px 12px;
    border-left: 1px solid #e8edf5;
    background: rgba(255, 255, 255, 0.72);
}

.axa-control-kpis > div:first-child {
    border-left: 0;
}

.axa-control-kpis span,
.axa-control-summary-grid dt,
.axa-control-ai-grid span,
.axa-control-feedback label > span,
.axa-control-field > span,
.axa-control-feedback-summary span {
    color: var(--axa-control-muted);
    font-size: 12px;
    font-weight: 750;
}

.axa-control-kpis strong {
    overflow-wrap: anywhere;
    font-size: 19px;
    line-height: 1.15;
}

.axa-control-panel {
    margin-top: 14px;
    padding: 18px;
}

.fp-feedback-interpretation,
.axa-feedback-interpretation {
    border-color: #cbd9f2;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.fp-feedback-interpretation .fp-review-section-head p,
.axa-feedback-interpretation .axa-control-section-head p {
    max-width: 720px;
    margin: 5px 0 0;
    color: var(--axa-control-muted);
    font-size: 13px;
    line-height: 1.45;
}

.fp-feedback-interpretation-summary,
.axa-feedback-interpretation-summary {
    display: grid;
    gap: 5px;
    padding: 14px;
    border: 1px solid #dbe5f6;
    border-radius: 8px;
    background: #ffffff;
}

.fp-feedback-interpretation-summary span,
.axa-feedback-interpretation-summary span {
    color: var(--axa-control-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.fp-feedback-interpretation-summary strong,
.axa-feedback-interpretation-summary strong {
    font-size: 15px;
    line-height: 1.5;
}

.fp-feedback-domain-list,
.axa-feedback-domain-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.fp-feedback-domain-list span,
.axa-feedback-domain-list span {
    padding: 6px 9px;
    border: 1px solid #c8d9f8;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--axa-control-blue);
    font-size: 12px;
    font-weight: 800;
}

.fp-feedback-action-list,
.axa-feedback-action-list {
    display: grid;
    gap: 9px;
    margin-top: 12px;
}

.fp-feedback-action-list article,
.axa-feedback-action-list article {
    display: grid;
    gap: 5px;
    padding: 12px 14px;
    border-left: 4px solid var(--axa-control-blue);
    border-radius: 7px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px #e1e7f0;
}

.fp-feedback-action-list article > div,
.axa-feedback-action-list article > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
}

.fp-feedback-action-list article span,
.axa-feedback-action-list article span,
.fp-feedback-action-list article p,
.axa-feedback-action-list article p {
    color: var(--axa-control-muted);
    font-size: 13px;
}

.fp-feedback-action-list article p,
.axa-feedback-action-list article p {
    margin: 0;
    line-height: 1.45;
}

.fp-feedback-action-list article b,
.axa-feedback-action-list article b {
    font-size: 13px;
}

.fp-feedback-warning,
.axa-feedback-warning {
    margin-top: 12px;
    padding: 12px 14px;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    background: #fff7ed;
    color: #9a3412;
    font-size: 13px;
}

.fp-feedback-warning ul,
.axa-feedback-warning ul {
    margin: 6px 0 0;
    padding-left: 18px;
}

.fp-feedback-interpretation-audit,
.axa-feedback-interpretation-audit {
    margin: 0;
    color: var(--axa-control-muted);
    font-size: 13px;
    line-height: 1.45;
}

.fp-feedback-interpretation-audit,
.axa-feedback-interpretation-audit {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #dbe5f6;
}

.axa-control-section-head {
    align-items: center;
    margin-bottom: 14px;
}

.axa-control-section-head.is-compact {
    margin-bottom: 10px;
}

.axa-control-section-head h2 {
    font-size: 18px;
    font-weight: 820;
}

.axa-control-section-head h3 {
    font-size: 15px;
    font-weight: 800;
}

.axa-control-section-head button,
.axa-control-form-actions button,
.axa-control-line-item button {
    min-height: 34px;
    border: 1px solid var(--axa-control-blue);
    border-radius: 7px;
    background: var(--axa-control-blue);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.axa-control-section-head button,
.axa-control-line-item button {
    padding: 7px 10px;
}

.axa-control-form-actions button {
    padding: 9px 14px;
}

.axa-control-form-actions .axa-control-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    min-width: 116px;
    padding: 9px 14px;
    white-space: nowrap;
}

.axa-control-form-actions .axa-control-action-button.is-secondary {
    border-color: #cfd8e7;
    background: #ffffff;
    color: var(--axa-control-blue);
}

.axa-control-form-actions .axa-control-action-button.is-approve {
    border-color: var(--axa-control-green);
    background: var(--axa-control-green);
    color: #ffffff;
}

.axa-control-form-actions .axa-control-action-button.is-estimate {
    border-color: #b7cffc;
    background: #eef5ff;
    color: var(--axa-control-blue);
}

.axa-control-form-actions .axa-control-action-button.is-primary {
    border-color: var(--axa-control-blue);
    background: var(--axa-control-blue);
    color: #ffffff;
}

.axa-control-form-actions .axa-control-action-button.is-danger {
    border-color: #fecdd3;
    background: #fff1f2;
    color: #be123c;
}

.axa-control-form-actions .axa-control-action-button.is-secondary:hover {
    background: #f5f8ff;
}

.axa-control-form-actions .axa-control-action-button.is-approve:hover {
    background: #0c783f;
}

.axa-control-form-actions .axa-control-action-button.is-estimate:hover {
    background: #dbeafe;
    border-color: #93c5fd;
}

.axa-control-form-actions .axa-control-action-button.is-primary:hover {
    background: #002a80;
}

.axa-control-form-actions .axa-control-action-button.is-danger:hover {
    background: #ffe4e6;
    border-color: #fda4af;
}

.axa-control-form-actions button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.axa-control-session-filters {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(132px, 0.82fr)) auto;
    gap: 10px;
    align-items: end;
    margin-bottom: 10px;
    padding: 12px;
    border: 1px solid #e3e9f3;
    border-radius: 8px;
    background: #f8fbff;
}

.axa-control-session-filters label {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.axa-control-session-filters span,
.axa-control-session-filter-state {
    color: var(--axa-control-muted);
    font-size: 12px;
    font-weight: 780;
    line-height: 1.25;
}

.axa-control-session-filters input,
.axa-control-session-filters select {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid #cfd8e7;
    border-radius: 7px;
    background: #ffffff;
    color: var(--axa-control-ink);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
}

.axa-control-session-filters input:focus,
.axa-control-session-filters select:focus {
    border-color: #9db7fd;
    outline: 3px solid rgba(38, 103, 255, 0.14);
    outline-offset: 0;
}

.axa-control-session-filters button {
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid #cfd8e7;
    border-radius: 7px;
    background: #ffffff;
    color: var(--axa-control-blue);
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
}

.axa-control-session-filters button:hover,
.axa-control-session-filters button:focus-visible {
    background: #eef4ff;
    border-color: #b7cffc;
}

.axa-control-session-filters button:focus-visible {
    outline: 3px solid rgba(38, 103, 255, 0.16);
    outline-offset: 2px;
}

.axa-control-session-filter-state {
    margin: 2px 0 10px;
}

.axa-control-table-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-gutter: stable;
    border: 1px solid #e5ebf4;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: inset -16px 0 18px -20px rgba(15, 23, 42, 0.38);
}

.axa-control-table-wrap:focus-visible {
    outline: 3px solid rgba(38, 103, 255, 0.2);
    outline-offset: 3px;
}

.axa-control-table-wrap::-webkit-scrollbar {
    height: 11px;
}

.axa-control-table-wrap::-webkit-scrollbar-track {
    background: #edf2f8;
}

.axa-control-table-wrap::-webkit-scrollbar-thumb {
    border: 3px solid #edf2f8;
    border-radius: 999px;
    background: #9aa9bd;
}

.axa-control-table {
    width: 100%;
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 13px;
    table-layout: fixed;
}

.axa-control-table th,
.axa-control-table td {
    min-width: 0;
    padding: 11px 10px;
    border-bottom: 1px solid #e8edf5;
    text-align: left;
    vertical-align: middle;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.axa-control-table th {
    background: #f8fafc;
    color: #344054;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    white-space: normal;
}

.axa-control-sort-button {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 8px;
    align-items: center;
    justify-content: flex-start;
    column-gap: 6px;
    width: 100%;
    min-height: 30px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 850;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
}

.axa-control-sort-label {
    min-width: 0;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
}

.axa-control-sort-button:focus-visible {
    outline: 3px solid rgba(38, 103, 255, 0.18);
    outline-offset: 3px;
}

.axa-control-sort-indicator {
    display: inline-flex;
    flex: 0 0 8px;
    width: 8px;
    height: 10px;
    opacity: 0.35;
}

.axa-control-sort-indicator::before {
    content: "";
    align-self: center;
    width: 0;
    height: 0;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 5px solid currentColor;
}

.axa-control-table th[aria-sort="ascending"] .axa-control-sort-indicator,
.axa-control-table th[aria-sort="descending"] .axa-control-sort-indicator {
    opacity: 1;
}

.axa-control-table th[aria-sort="ascending"] .axa-control-sort-indicator::before {
    border-top: 0;
    border-bottom: 5px solid currentColor;
}

.axa-control-table td {
    color: var(--axa-control-ink);
    font-weight: 650;
    line-height: 1.25;
}

.axa-control-table th:nth-child(1),
.axa-control-table td:nth-child(1) {
    width: 12%;
}

.axa-control-table th:nth-child(2),
.axa-control-table td:nth-child(2) {
    width: 10%;
}

.axa-control-table th:nth-child(3),
.axa-control-table td:nth-child(3) {
    width: 13%;
}

.axa-control-table th:nth-child(4),
.axa-control-table td:nth-child(4) {
    width: 11%;
}

.axa-control-table th:nth-child(5),
.axa-control-table td:nth-child(5) {
    width: 9%;
}

.axa-control-table th:nth-child(6),
.axa-control-table td:nth-child(6) {
    width: 12%;
}

.axa-control-table th:nth-child(7),
.axa-control-table td:nth-child(7) {
    width: 9%;
}

.axa-control-table th:nth-child(8),
.axa-control-table td:nth-child(8) {
    width: 11%;
}

.axa-control-table th:nth-child(9),
.axa-control-table td:nth-child(9) {
    width: 13%;
    position: sticky;
    right: 0;
    z-index: 1;
    background: #ffffff;
    box-shadow: -10px 0 18px -18px rgba(15, 23, 42, 0.42);
}

.axa-control-table th:nth-child(9) {
    z-index: 2;
    background: #f8fafc;
}

.axa-control-table tbody tr {
    transition: background-color 160ms ease;
}

.axa-control-table tbody tr:hover {
    background: #f8fbff;
}

.axa-control-table tr:last-child td {
    border-bottom: 0;
}

.axa-control-table a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    color: var(--axa-control-blue);
    font-weight: 850;
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.axa-control-table th:nth-child(2),
.axa-control-table th:nth-child(5),
.axa-control-table th:nth-child(6),
.axa-control-table th:nth-child(7),
.axa-control-table th:nth-child(8),
.axa-control-table td:nth-child(2),
.axa-control-table td:nth-child(5),
.axa-control-table td:nth-child(6),
.axa-control-table td:nth-child(7),
.axa-control-table td:nth-child(8) {
    white-space: nowrap;
}

.axa-control-table th:nth-child(3),
.axa-control-table th:nth-child(4),
.axa-control-table td:nth-child(3),
.axa-control-table td:nth-child(4) {
    overflow-wrap: normal;
}

.axa-control-table small {
    display: block;
    margin-top: 6px;
    max-width: 220px;
    color: #667085;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.35;
}

.axa-control-money {
    white-space: normal;
    font-variant-numeric: tabular-nums;
}

.axa-control-reestimate-cell {
    min-width: 0;
}

.axa-control-table-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    min-width: 0;
}

.axa-control-list-approve-form,
.axa-control-list-delete-form {
    display: flex;
    width: 100%;
    max-width: 138px;
    margin: 0;
}

.axa-control-list-approve-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 32px;
    padding: 7px 10px;
    border: 1px solid #b7e4c7;
    border-radius: 7px;
    background: #e8f7ee;
    color: var(--axa-control-green);
    font-size: 12px;
    font-weight: 850;
    line-height: 1.15;
    white-space: normal;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.axa-control-list-approve-button:hover,
.axa-control-list-approve-button:focus-visible {
    background: #d9f1e2;
    border-color: #95d4ad;
}

.axa-control-list-approve-button:focus-visible {
    outline: 3px solid rgba(22, 128, 72, 0.2);
    outline-offset: 2px;
}

.axa-control-list-delete-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 32px;
    padding: 7px 10px;
    border: 1px solid #fecdd3;
    border-radius: 7px;
    background: #fff1f2;
    color: #be123c;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.15;
    white-space: normal;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.axa-control-list-delete-button:hover,
.axa-control-list-delete-button:focus-visible {
    background: #ffe4e6;
    border-color: #fda4af;
}

.axa-control-list-delete-button:focus-visible {
    outline: 3px solid rgba(190, 18, 60, 0.18);
    outline-offset: 2px;
}

.axa-control-reestimate-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    width: 100%;
    min-width: 0;
}

.axa-control-reestimate-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    max-width: 138px;
    min-width: 0;
    min-height: 32px;
    padding: 7px 10px;
    border: 1px solid #c7d7fe;
    border-radius: 7px;
    background: #eef4ff;
    color: var(--axa-control-blue);
    font-size: 12px;
    font-weight: 850;
    line-height: 1.15;
    white-space: normal;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.axa-control-reestimate-button:hover {
    background: #dfeaff;
    border-color: #9db7fd;
}

.axa-control-reestimate-button:focus-visible {
    outline: 3px solid rgba(38, 103, 255, 0.2);
    outline-offset: 2px;
}

.axa-control-reestimate-button:disabled {
    cursor: wait;
    opacity: 0.82;
}

.axa-control-reestimate-button.is-processing {
    background: #fff7ed;
    border-color: #fed7aa;
    color: var(--axa-control-orange);
}

.axa-control-reestimate-button.is-complete {
    background: #e8f7ee;
    border-color: #b7e4c7;
    color: var(--axa-control-green);
}

.axa-control-reestimate-button.is-error {
    background: #fff1f2;
    border-color: #fecdd3;
    color: var(--axa-control-red);
}

.axa-control-reestimate-spinner,
.axa-control-reestimate-check {
    display: none;
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
}

.axa-control-reestimate-button.is-processing .axa-control-reestimate-spinner {
    display: inline-block;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 999px;
    animation: axa-control-reestimate-spin 760ms linear infinite;
}

.axa-control-reestimate-button.is-complete .axa-control-reestimate-check {
    display: inline-block;
    position: relative;
    border-radius: 999px;
    background: var(--axa-control-green);
}

.axa-control-reestimate-button.is-complete .axa-control-reestimate-check::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@keyframes axa-control-reestimate-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 420px) {
    .auth-body .axa-demo-login.is-customer-auth-flow {
        padding: 18px 10px;
    }

    .auth-body .axa-demo-login.is-customer-auth-flow .axa-demo-login-grid {
        width: min(100%, 360px);
        min-height: 0;
        border-radius: 8px;
    }

    .auth-body .axa-demo-login.is-customer-auth-flow .axa-demo-login-card {
        min-height: 0;
        border: 1px solid #cfdbea;
        border-radius: 8px;
        box-shadow: 0 12px 28px rgba(15, 31, 55, 0.10);
    }
}

@media (max-width: 420px) {
    .auth-body[data-route="customer/demo-link"] .axa-demo-customer-shell {
        padding: 18px 10px;
    }

    .auth-body[data-route="customer/demo-link"] .axa-demo-customer-phone {
        width: min(100%, 360px);
        min-height: calc(100vh - 36px);
        border: 1px solid #cfdbea;
        border-radius: 8px;
        box-shadow: 0 12px 28px rgba(15, 31, 55, 0.10);
    }
}

.axa-control-damage-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: 100%;
    min-height: 26px;
    padding: 4px 9px;
    border: 1px solid var(--damage-border);
    border-radius: 999px;
    background: var(--damage-bg);
    color: var(--damage-accent);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: normal;
    word-break: normal;
}

.axa-control-damage-pill::before {
    content: "";
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--damage-accent);
}

.axa-control-status {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 4px 9px;
    border-radius: 7px;
    background: #e9f0ff;
    color: var(--axa-control-blue);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
}

.axa-control-status.is-green {
    background: #e8f7ee;
    color: var(--axa-control-green);
}

.axa-control-status.is-orange {
    background: #fff2e6;
    color: var(--axa-control-orange);
}

.axa-control-status.is-red {
    background: #fff1f0;
    color: #b42318;
}

.axa-control-status.is-blue {
    background: #e9f0ff;
    color: var(--axa-control-blue);
}

.axa-control-status.is-muted {
    background: #eef2f6;
    color: #475467;
}

.axa-control-learning-monitor .axa-control-section-head > div {
    display: grid;
    gap: 4px;
}

.axa-control-learning-monitor .axa-control-section-head > span {
    align-self: flex-start;
    border: 1px solid #d8e2ef;
    border-radius: 999px;
    padding: 5px 9px;
    background: #f6f8fb;
    color: #344054;
    font-size: 11px;
    font-weight: 820;
    line-height: 1.2;
    white-space: nowrap;
}

.axa-control-learning-head {
    gap: 14px;
}

.axa-control-learning-activity {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    overflow: hidden;
    margin-bottom: 12px;
    padding: 12px 14px;
    border: 1px solid #bee9f5;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(14, 165, 233, 0.09), rgba(16, 185, 129, 0.08)),
        #fbfeff;
}

.axa-control-learning-error {
    display: grid;
    gap: 3px;
    margin-bottom: 12px;
    padding: 12px 14px;
    border: 1px solid #fecaca;
    border-radius: 8px;
    background: #fff7f7;
    color: #991b1b;
}

.axa-control-learning-activity::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.68) 38%, transparent 64%);
    pointer-events: none;
    transform: translateX(-120%);
    animation: axa-learning-sheen 2.8s ease-in-out infinite;
}

.axa-control-learning-core {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 50%, #ffffff 0 18%, #67e8f9 19% 33%, #2563eb 34% 55%, #0f172a 56% 100%);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.22), 0 12px 26px rgba(37, 99, 235, 0.24);
    animation: axa-learning-core-pulse 1.05s ease-in-out infinite;
    will-change: transform, filter, box-shadow;
}

.axa-control-learning-core::before,
.axa-control-learning-core::after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 3px solid rgba(37, 99, 235, 0.3);
    border-top-color: #06b6d4;
    border-right-color: #12b76a;
    border-bottom-color: transparent;
    border-left-color: #2563eb;
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.26);
    animation: axa-learning-spin 0.85s linear infinite;
    will-change: transform;
}

.axa-control-learning-core::after {
    inset: 6px;
    border-color: rgba(255, 255, 255, 0.92);
    border-top-color: transparent;
    border-right-color: #67e8f9;
    border-bottom-color: transparent;
    animation-duration: 0.65s;
    animation-direction: reverse;
}

.axa-control-learning-activity strong,
.axa-control-learning-activity span {
    position: relative;
    z-index: 1;
    display: block;
}

.axa-control-learning-activity > div:nth-child(2) strong {
    color: var(--axa-control-ink);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
}

.axa-control-learning-activity > div:nth-child(2) span {
    margin-top: 3px;
    color: #405169;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.axa-control-learning-monitor.is-refreshing {
    border-color: #c9e8f4;
}

.axa-control-learning-health-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
}

.axa-control-learning-health-card {
    min-width: 0;
    display: grid;
    gap: 6px;
    min-height: 84px;
    align-content: start;
    padding: 11px 12px;
    border: 1px solid #e3e9f3;
    border-left: 4px solid #d0d5dd;
    border-radius: 8px;
    background: #ffffff;
}

.axa-control-learning-health-card.is-green {
    border-left-color: #12b76a;
}

.axa-control-learning-health-card.is-blue {
    border-left-color: var(--axa-control-blue);
}

.axa-control-learning-health-card.is-orange {
    border-left-color: #f79009;
}

.axa-control-learning-health-card.is-red {
    border-left-color: var(--axa-control-red);
}

.axa-control-learning-health-card span,
.axa-control-learning-health-card small {
    color: var(--axa-control-muted);
    font-size: 11px;
    font-weight: 760;
    line-height: 1.35;
}

.axa-control-learning-health-card span {
    text-transform: uppercase;
}

.axa-control-learning-health-card strong {
    color: var(--axa-control-ink);
    font-size: 17px;
    font-weight: 880;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.axa-control-learning-domain-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.axa-control-learning-domain,
.axa-control-learning-candidate {
    min-width: 0;
    border: 1px solid #e3e9f3;
    border-radius: 8px;
    background: #ffffff;
}

.axa-control-learning-domain {
    display: grid;
    gap: 10px;
    padding: 13px;
    background: #ffffff;
}

.axa-control-learning-domain header {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.axa-control-learning-domain header > div {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.axa-control-learning-domain header > .axa-control-status {
    flex: 0 1 auto;
    justify-content: center;
    text-align: center;
}

.axa-control-learning-domain span,
.axa-control-learning-candidate header span,
.axa-control-learning-domain dt,
.axa-control-learning-candidate dt,
.axa-control-learning-note {
    color: var(--axa-control-muted);
    font-size: 12px;
    font-weight: 760;
    line-height: 1.35;
}

.axa-control-learning-domain strong,
.axa-control-learning-candidate header strong {
    color: var(--axa-control-ink);
    font-size: 17px;
    font-weight: 850;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.axa-control-learning-domain dl,
.axa-control-learning-candidate dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.axa-control-learning-domain dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 10px;
    border-top: 1px solid #edf1f7;
}

.axa-control-learning-domain dl div,
.axa-control-learning-candidate dl div {
    min-width: 0;
}

.axa-control-learning-domain dt,
.axa-control-learning-candidate dt {
    margin-bottom: 3px;
}

.axa-control-learning-domain dd,
.axa-control-learning-candidate dd {
    margin: 0;
    color: var(--axa-control-ink);
    font-size: 13px;
    font-weight: 760;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.axa-control-learning-candidates {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.axa-control-learning-candidate {
    display: grid;
    gap: 12px;
    padding: 13px;
}

.axa-control-learning-candidate header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.axa-control-learning-candidate header > div {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.axa-control-learning-candidate dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 10px;
    border-top: 1px solid #edf1f7;
}

.axa-control-learning-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid #edf1f7;
}

.axa-control-learning-actions form {
    margin: 0;
}

.axa-control-learning-actions button {
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid var(--axa-control-blue);
    border-radius: 7px;
    background: var(--axa-control-blue);
    color: #ffffff;
    font-size: 12px;
    font-weight: 820;
    cursor: pointer;
}

.axa-control-learning-actions button.is-danger {
    border-color: var(--axa-control-red);
    background: #ffffff;
    color: var(--axa-control-red);
}

.axa-control-learning-note {
    margin: 0;
    padding-top: 10px;
    border-top: 1px solid #edf1f7;
}

.axa-control-learning-scope-note {
    margin: 12px 0 0;
    padding: 10px 12px;
    border: 1px solid #dcebf3;
    border-radius: 8px;
    background: #f7fbfd;
    color: #475467;
    font-size: 11px;
    font-weight: 680;
    line-height: 1.45;
}

.axa-control-learning-scope-note strong {
    color: var(--axa-control-ink);
    font-weight: 850;
}

@keyframes axa-learning-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes axa-learning-core-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.22), 0 10px 22px rgba(37, 99, 235, 0.2);
        filter: brightness(0.9);
        transform: scale(0.92);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.24), 0 16px 34px rgba(37, 99, 235, 0.42);
        filter: brightness(1.22);
        transform: scale(1.08);
    }
}

@keyframes axa-learning-sheen {
    0%,
    22% {
        transform: translateX(-120%);
    }

    65%,
    100% {
        transform: translateX(120%);
    }
}

.axa-control-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.axa-control-summary-grid div {
    min-width: 0;
    padding: 12px;
    border: 1px solid #e7edf6;
    border-radius: 8px;
    background: var(--axa-control-soft);
}

.axa-control-summary-grid dd {
    margin: 5px 0 0;
    overflow-wrap: anywhere;
    font-size: 14px;
    font-weight: 800;
}

.axa-control-summary-status dd {
    display: grid;
    gap: 6px;
}

.axa-control-summary-status small {
    color: var(--axa-control-muted);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.35;
}

.axa-control-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.axa-control-photo-card {
    display: grid;
    gap: 9px;
    min-width: 0;
}

.axa-control-photo-card button,
.axa-control-photo-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid var(--axa-control-line);
    border-radius: 8px;
    background: #eef3f9;
}

.axa-control-photo-card button {
    padding: 0;
    cursor: zoom-in;
}

.axa-control-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.axa-control-photo-placeholder {
    display: grid;
    place-items: center;
    padding: 12px;
    color: var(--axa-control-muted);
    font-size: 13px;
    font-weight: 750;
    text-align: center;
}

.axa-control-photo-card strong,
.axa-control-document-list strong,
.axa-control-cost-list strong {
    display: block;
    overflow-wrap: anywhere;
    font-size: 13px;
}

.axa-control-document-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.axa-control-document-list li,
.axa-control-cost-list div,
.axa-control-photo-review-list div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid #e7edf6;
    border-radius: 8px;
    background: var(--axa-control-soft);
}

.axa-control-ai-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
    gap: 14px;
}

.axa-control-ai-grid article {
    min-width: 0;
    padding: 14px;
    border: 1px solid #e7edf6;
    border-radius: 8px;
    background: var(--axa-control-soft);
}

.axa-control-ai-grid p {
    margin: 7px 0 0;
    line-height: 1.55;
}

.axa-control-ai-grid strong {
    display: block;
    margin-top: 6px;
    font-size: 23px;
}

:is(.fp-review-estimate-clarifications, .axa-control-estimate-clarifications) {
    grid-column: 1 / -1;
}

:is(.fp-review-estimate-clarifications, .axa-control-estimate-clarifications) > ol {
    display: grid;
    gap: 10px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

:is(.fp-review-estimate-clarifications, .axa-control-estimate-clarifications) > ol > li {
    padding: 12px;
    border: 1px solid #dce6f2;
    border-radius: 8px;
    background: #ffffff;
}

:is(.fp-review-estimate-clarifications, .axa-control-estimate-clarifications) > ol > li > div {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
}

:is(.fp-review-estimate-clarifications, .axa-control-estimate-clarifications) > ol > li > div small {
    border-radius: 999px;
    padding: 3px 8px;
    background: rgba(0, 51, 153, 0.1);
    color: var(--axa-control-blue);
    font-weight: 800;
}

:is(.fp-review-estimate-clarifications, .axa-control-estimate-clarifications) > ol > li > p + span {
    display: block;
    margin-top: 12px;
}

.axa-control-cost-list {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.axa-control-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.axa-control-form-grid-third {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.axa-control-feedback-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.axa-control-feedback-summary > div {
    display: grid;
    gap: 5px;
    min-height: 62px;
    padding: 12px;
    border: 1px solid #e7edf6;
    border-radius: 8px;
    background: var(--axa-control-soft);
}

.axa-control-feedback-summary strong {
    overflow-wrap: anywhere;
    font-size: 18px;
    line-height: 1.2;
}

.axa-control-feedback label,
.axa-control-field,
.axa-control-wide-field {
    display: grid;
    gap: 6px;
}

.axa-control-feedback input,
.axa-control-feedback select,
.axa-control-feedback textarea {
    width: 100%;
    min-height: 38px;
    border: 1px solid var(--axa-control-line);
    border-radius: 7px;
    padding: 8px 10px;
    background: #ffffff;
    color: var(--axa-control-ink);
    font: inherit;
    font-size: 13px;
}

.axa-control-feedback textarea {
    resize: vertical;
}

.axa-control-severity-options {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
}

.axa-control-severity-options label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px;
    border: 1px solid var(--axa-control-line);
    border-radius: 7px;
    background: #ffffff;
    cursor: pointer;
    text-align: center;
}

.axa-control-severity-options input {
    width: 1px;
    min-height: 0;
    height: 1px;
    margin: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
}

.axa-control-severity-options label > span {
    color: var(--axa-control-ink);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.15;
}

.axa-control-severity-options label:has(input:checked) {
    border-color: rgba(0, 75, 156, 0.34);
    background: #edf4ff;
    color: var(--axa-control-blue);
}

.axa-control-wide-field,
.axa-control-feedback-block,
.axa-control-learning-group,
.axa-control-form-actions {
    margin-top: 14px;
}

.axa-control-photo-review-list,
.axa-control-line-items {
    display: grid;
    gap: 8px;
}

.axa-control-photo-review-list div {
    grid-template-columns: minmax(150px, 0.75fr) minmax(145px, 0.6fr) minmax(155px, 0.65fr) minmax(210px, 1fr);
}

.axa-control-line-item {
    display: grid;
    grid-template-columns: minmax(120px, 0.6fr) minmax(220px, 1.25fr) minmax(108px, 0.45fr) minmax(120px, 0.55fr) minmax(155px, 0.7fr) minmax(150px, 0.8fr) auto;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid #e7edf6;
    border-radius: 8px;
    background: var(--axa-control-soft);
}

.axa-control-line-item button {
    border-color: #cfd8e7;
    background: #ffffff;
    color: var(--axa-control-muted);
}

.axa-control-line-total {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(170px, 0.35fr);
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding: 12px;
    border: 1px solid #d8e1ef;
    border-radius: 8px;
    background: #ffffff;
}

.axa-control-line-total span {
    display: block;
    color: var(--axa-control-muted);
    font-size: 12px;
    font-weight: 800;
}

.axa-control-line-total strong {
    display: block;
    margin-top: 3px;
    color: var(--axa-control-ink);
    font-size: 18px;
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
}

.axa-control-line-total input {
    font-weight: 850;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.axa-control-learning-group {
    display: grid;
    grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid #d8e1ef;
    border-radius: 8px;
    background: #ffffff;
}

.axa-control-learning-group strong,
.axa-control-learning-group small {
    display: block;
}

.axa-control-learning-group strong {
    color: var(--axa-control-ink);
    font-size: 14px;
    font-weight: 850;
}

.axa-control-learning-group small {
    margin-top: 3px;
    color: var(--axa-control-muted);
    font-size: 12px;
    line-height: 1.4;
}

.axa-control-learning-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.axa-control-learning-options label {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid #d8e1ef;
    border-radius: 7px;
    background: var(--axa-control-soft);
    color: var(--axa-control-ink);
    font-size: 13px;
    font-weight: 800;
}

.axa-control-learning-options input {
    width: 18px;
    min-height: 18px;
    accent-color: var(--axa-control-blue);
}

.axa-control-empty {
    padding: 14px;
    border: 1px dashed var(--axa-control-line);
    border-radius: 8px;
    background: var(--axa-control-soft);
}

.axa-control-empty.is-compact {
    padding: 10px 12px;
}

.axa-control-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(15, 23, 42, 0.78);
}

.axa-control-lightbox[hidden] {
    display: none;
}

.axa-control-lightbox button {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
}

.axa-control-lightbox figure {
    display: grid;
    gap: 10px;
    max-width: min(960px, 92vw);
    max-height: 88vh;
    margin: 0;
}

.axa-control-lightbox img {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 8px;
    background: #ffffff;
    object-fit: contain;
}

.axa-control-lightbox figcaption {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 980px) {
    .axa-control-session-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .axa-control-session-search,
    .axa-control-session-filters button {
        grid-column: 1 / -1;
    }

    .axa-control-summary-grid,
    .axa-control-photo-grid,
    .axa-control-ai-grid,
    .axa-control-form-grid,
    .axa-control-learning-health-grid,
    .axa-control-learning-candidates {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .axa-control-kpi-group {
        grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
    }

    .axa-control-kpi-type {
        min-height: 0;
    }

    .axa-control-kpis {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .axa-control-line-item {
        grid-template-columns: minmax(140px, 0.8fr) minmax(220px, 1.4fr) minmax(120px, 0.7fr) auto;
    }

    .axa-control-severity-options {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 981px) and (max-width: 1180px) {
    .axa-control-table {
        min-width: 0;
        font-size: 12.5px;
    }

    .axa-control-table th,
    .axa-control-table td {
        padding-right: 8px;
        padding-left: 8px;
    }

    .axa-control-table th:nth-child(1),
    .axa-control-table td:nth-child(1) {
        width: 12.5%;
    }

    .axa-control-table th:nth-child(2),
    .axa-control-table td:nth-child(2) {
        width: 10%;
    }

    .axa-control-table th:nth-child(3),
    .axa-control-table td:nth-child(3) {
        width: 14%;
    }

    .axa-control-table th:nth-child(4),
    .axa-control-table td:nth-child(4) {
        width: 10.5%;
    }

    .axa-control-table th:nth-child(5),
    .axa-control-table td:nth-child(5) {
        width: 9.5%;
    }

    .axa-control-table th:nth-child(6),
    .axa-control-table td:nth-child(6) {
        width: 11.5%;
    }

    .axa-control-table th:nth-child(7),
    .axa-control-table td:nth-child(7) {
        width: 8%;
    }

    .axa-control-table th:nth-child(8),
    .axa-control-table td:nth-child(8) {
        width: 11%;
    }

    .axa-control-table th:nth-child(9),
    .axa-control-table td:nth-child(9) {
        width: 13%;
    }

    .axa-control-table-actions {
        width: 100%;
    }

    .axa-control-table td:nth-child(2) {
        white-space: normal;
    }

    .axa-control-list-approve-form,
    .axa-control-list-delete-form,
    .axa-control-reestimate-form {
        max-width: 126px;
    }

    .axa-control-list-approve-button,
    .axa-control-list-delete-button,
    .axa-control-reestimate-button {
        padding-right: 8px;
        padding-left: 8px;
    }
}

@media (min-width: 681px) and (max-width: 980px) {
    .axa-control-table {
        min-width: 1120px;
    }

    .axa-control-table th:nth-child(9),
    .axa-control-table td:nth-child(9) {
        position: static;
        right: auto;
        z-index: auto;
        box-shadow: none;
    }

    .axa-control-table td:nth-child(2) {
        white-space: normal;
    }
}

@media (max-width: 680px) {
    .axa-control-topbar,
    .axa-control-page-head,
    .axa-control-section-head,
    .axa-control-form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .axa-control-form-actions {
        align-items: stretch;
        flex-direction: row;
        justify-content: flex-end;
        gap: 8px;
    }

    .axa-control-form-actions .axa-control-action-button {
        flex: 1 1 128px;
        min-width: 0;
    }

    .axa-control-main {
        width: calc(100% - 24px);
        padding-top: 18px;
    }

    .axa-control-table-wrap {
        overflow: visible;
        scrollbar-gutter: auto;
        box-shadow: none;
    }

    .axa-control-table {
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0 10px;
        table-layout: auto;
    }

    .axa-control-table thead {
        display: none;
    }

    .axa-control-table,
    .axa-control-table tbody,
    .axa-control-table tr,
    .axa-control-table td {
        display: block;
        width: 100%;
    }

    .axa-control-table tr {
        padding: 12px;
        border: 1px solid var(--axa-control-line);
        border-radius: 8px;
        background: #fff;
    }

    .axa-control-table th:nth-child(n),
    .axa-control-table td:nth-child(n) {
        width: 100%;
    }

    .axa-control-table td {
        display: grid;
        grid-template-columns: minmax(88px, 34%) minmax(0, 1fr);
        align-items: flex-start;
        column-gap: 12px;
        padding: 8px 0;
        border-bottom: 1px solid #edf1f7;
        white-space: normal;
        overflow-wrap: normal;
    }

    .axa-control-table th:nth-child(9),
    .axa-control-table td:nth-child(9) {
        position: static;
        right: auto;
        z-index: auto;
        background: transparent;
        box-shadow: none;
    }

    .axa-control-table td:nth-child(2),
    .axa-control-table td:nth-child(5),
    .axa-control-table td:nth-child(6),
    .axa-control-table td:nth-child(7),
    .axa-control-table td:nth-child(8) {
        white-space: normal;
    }

    .axa-control-table td:last-child {
        border-bottom: 0;
    }

    .axa-control-table td::before {
        min-width: 0;
        color: var(--axa-control-muted);
        font-size: 11px;
        font-weight: 800;
        line-height: 1.3;
    }

    .axa-control-table td:nth-child(1)::before {
        content: "Numero sinistro";
    }

    .axa-control-table td:nth-child(2)::before {
        content: "Data raccolta";
    }

    .axa-control-table td:nth-child(3)::before {
        content: "Tipo danno";
    }

    .axa-control-table td:nth-child(4)::before {
        content: "Stato";
    }

    .axa-control-table td:nth-child(5)::before {
        content: "Stima AI";
    }

    .axa-control-table td:nth-child(6)::before {
        content: "Importo corretto";
    }

    .axa-control-table td:nth-child(7)::before {
        content: "% accuratezza";
    }

    .axa-control-table td:nth-child(8)::before {
        content: "Accettazione stima";
    }

    .axa-control-table td:nth-child(9)::before {
        content: "Azioni";
    }

    .axa-control-table a,
    .axa-control-table .axa-control-status,
    .axa-control-table .axa-control-money,
    .axa-control-table .axa-control-table-actions,
    .axa-control-table .axa-control-reestimate-form {
        min-width: 0;
        max-width: 100%;
        justify-self: end;
        text-align: right;
    }

    .axa-control-table a {
        justify-content: flex-end;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .axa-control-table .axa-control-status {
        justify-content: flex-end;
        white-space: normal;
        overflow-wrap: normal;
        word-break: normal;
    }

    .axa-control-table .axa-control-money {
        white-space: normal;
    }

    .axa-control-table .axa-control-reestimate-form {
        align-items: flex-end;
    }

    .axa-control-session-filters {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .axa-control-table .axa-control-table-actions {
        align-items: flex-end;
    }

    .axa-control-table .axa-control-table-actions .axa-control-list-approve-form,
    .axa-control-table .axa-control-table-actions .axa-control-list-delete-form,
    .axa-control-table .axa-control-table-actions .axa-control-reestimate-form {
        width: 100%;
        max-width: 138px;
    }

    .axa-control-summary-grid,
    .axa-control-photo-grid,
    .axa-control-ai-grid,
    .axa-control-feedback-summary,
    .axa-control-form-grid,
    .axa-control-form-grid-third,
    .axa-control-photo-review-list div,
    .axa-control-line-item,
    .axa-control-line-total,
    .axa-control-learning-group,
    .axa-control-learning-options,
    .axa-control-learning-health-grid,
    .axa-control-learning-domain-grid,
    .axa-control-learning-candidates,
    .axa-control-learning-domain dl,
    .axa-control-learning-candidate dl {
        grid-template-columns: 1fr;
    }

    .axa-control-severity-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .axa-control-learning-candidate header,
    .axa-control-learning-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .axa-control-learning-activity {
        grid-template-columns: 1fr;
    }

    .axa-control-learning-actions form,
    .axa-control-learning-actions button {
        width: 100%;
    }

    .axa-control-line-total input {
        text-align: left;
    }

    .axa-control-learning-core {
        width: 46px;
        height: 46px;
    }

    .axa-control-kpi-panel {
        padding: 12px;
        overflow: hidden;
    }

    .axa-control-kpi-groups {
        overflow-x: visible;
        padding-bottom: 2px;
    }

    .axa-control-kpi-group {
        min-width: 0;
        grid-template-columns: 1fr;
        background: linear-gradient(180deg, var(--damage-bg) 0%, #ffffff 48%);
    }

    .axa-control-kpi-type {
        min-height: 52px;
        padding: 9px 11px;
        font-size: 13px;
        border-bottom: 1px solid var(--damage-border);
    }

    .axa-control-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-top: 0;
        border-left: 0;
    }

    .axa-control-kpis > div {
        min-width: 0;
        min-height: 52px;
        padding: 8px 10px;
        border-top: 1px solid #e8edf5;
    }

    .axa-control-kpis > div:nth-child(odd) {
        border-left: 0;
    }

    .axa-control-kpis strong {
        font-size: 16px;
    }

}

/* AXA customer flow vertical-density pass from 05.07 observations. */
.auth-body[data-route="customer/demo-link"] .axa-demo-customer-shell {
    padding: 8px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-customer-phone {
    width: min(390px, 100%);
    min-height: auto;
    overflow: visible;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-customer-head {
    min-height: 50px;
    padding: 0 18px;
    border-radius: 22px 22px 0 0;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-customer-phone > .axa-demo-voice-dock {
    padding: 0 18px 16px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-screen {
    padding: 13px 18px 15px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-customer-copy h1,
.auth-body[data-route="customer/demo-link"] .axa-demo-photo-step h2 {
    font-size: 17px;
    line-height: 1.18;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-customer-copy p,
.auth-body[data-route="customer/demo-link"] .axa-demo-photo-step p {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.34;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-field {
    gap: 6px;
    margin-top: 10px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-field input,
.auth-body[data-route="customer/demo-link"] .axa-demo-field select,
.auth-body[data-route="customer/demo-link"] .axa-demo-field textarea {
    min-height: 42px;
    padding: 9px 10px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-field input.axa-demo-file-native {
    position: absolute;
    width: 1px;
    min-height: 0;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.auth-body[data-route="customer/demo-link"] .axa-demo-field textarea[data-axa-auto-grow] {
    min-height: 58px;
    resize: none;
    overflow: hidden;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-field span em {
    margin-left: 4px;
    color: #8a5b00;
    font-size: 11px;
    font-style: normal;
    font-weight: 850;
}

.auth-body[data-route="customer/demo-link"] #axa-demo-iban-help[data-state="warning"] {
    color: #9a4b00;
    font-weight: 750;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-button-row {
    gap: 8px;
    margin-top: 12px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-card,
.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-state,
.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-status,
.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-summary,
.auth-body[data-route="customer/demo-link"] .axa-demo-correction-panel {
    margin-top: 10px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-card {
    align-items: center;
    padding: 9px 10px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-card strong {
    margin-top: 2px;
    font-size: 13px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-card em {
    padding: 5px 8px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-manual-denuncia-field textarea {
    min-height: 92px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-file-status {
    margin-top: 6px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-wide-action {
    margin-top: 10px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-state,
.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-processing,
.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-status {
    padding: 9px 10px;
    border-radius: 10px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-summary {
    gap: 7px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-summary > div {
    padding: 8px 9px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-photo-progress {
    display: grid;
    gap: 7px;
    margin-top: 10px;
    border: 1px solid #dbe5f4;
    border-radius: 10px;
    padding: 9px 10px;
    background: #f8fbff;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-photo-progress .axa-demo-photo-count {
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 12px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-photo-progress small {
    color: #536179;
    font-size: 11px;
    font-weight: 800;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-photo-progress small strong {
    color: #071333;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-photo-step {
    margin-top: 10px;
    padding: 11px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-photo-guidance-grid {
    margin-top: 8px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-upload-actions {
    gap: 8px;
    margin-top: 10px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-upload-actions label,
.auth-body[data-route="customer/demo-link"] .axa-demo-upload-actions button {
    min-height: 42px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-disclosure > summary {
    min-height: 38px;
    padding: 0 10px;
    font-size: 11.5px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-consent {
    padding: 8px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-consent-copy {
    gap: 5px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-consent-details > summary {
    min-height: 32px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-consent-details small {
    padding: 7px 8px 8px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-gps-details .axa-demo-gps-meta-grid,
.auth-body[data-route="customer/demo-link"] .axa-demo-photo-more-actions {
    padding: 8px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-notes-disclosure .axa-demo-field {
    padding: 8px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-estimate-proposal > p[data-axa-estimate-proposal-text] {
    padding: 10px;
    font-size: 14px;
    line-height: 1.48;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-preview {
    min-height: 100px;
    margin-top: 10px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-preview-visual {
    height: 100px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-unavailable-panel {
    gap: 8px;
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-unavailable-panel p {
    font-size: 12px;
    line-height: 1.35;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-unavailable-panel textarea {
    min-height: 66px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-unavailable-reason {
    width: 100%;
    margin: 8px 0 0;
    border-radius: 8px;
    padding: 8px;
    background: rgba(32, 161, 102, 0.08);
    color: #165f3d;
    font-size: 12px;
    line-height: 1.35;
    text-align: left;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-unavailable-reason span {
    display: inline;
    color: #0f5132;
    font-weight: 900;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-final-gallery {
    gap: 9px;
    margin-top: 10px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-final-gallery-head {
    align-items: center;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-final-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.auth-body[data-route="customer/demo-link"] .axa-demo-package-summary {
    gap: 8px;
    margin-top: 10px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-package-summary div {
    padding: 9px 10px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-gallery {
    display: grid;
    gap: 10px;
    margin-top: 10px;
    border: 1px solid #dbe5f4;
    border-radius: 10px;
    padding: 10px;
    background: #f8fbff;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-gallery-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-gallery-head span {
    display: block;
    color: #071333;
    font-size: 13px;
    font-weight: 900;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-gallery-head small {
    display: block;
    margin-top: 2px;
    color: #66728a;
    font-size: 11px;
    font-weight: 700;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-gallery-head button {
    flex: 0 0 auto;
    min-height: 36px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-empty {
    grid-column: 1 / -1;
    border: 1px dashed #c9d5e6;
    border-radius: 10px;
    padding: 12px;
    color: #66728a;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-tile {
    display: grid;
    gap: 5px;
    min-width: 0;
    border: 1px solid #cdd9eb;
    border-radius: 8px;
    padding: 5px;
    background: #ffffff;
    color: #071333;
    font: inherit;
    cursor: pointer;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-tile.is-selected {
    border-color: var(--axa-blue);
    box-shadow: 0 0 0 2px rgba(0, 51, 153, 0.14);
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-thumb {
    display: grid;
    min-height: 74px;
    aspect-ratio: 1;
    place-items: center;
    overflow: hidden;
    border-radius: 6px;
    background: #eef3fb;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-thumb img,
.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-thumb .axa-demo-preview-visual {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-thumb strong,
.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-thumb small,
.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-thumb .axa-demo-unavailable-reason {
    display: none;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-name {
    overflow: hidden;
    color: #394765;
    font-size: 10px;
    font-weight: 850;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-modal {
    position: fixed;
    inset: 0;
    z-index: 95;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(7, 19, 51, 0.46);
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-modal[hidden] {
    display: none !important;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-modal-card {
    position: relative;
    display: grid;
    width: min(100%, 370px);
    gap: 10px;
    border-radius: 12px;
    padding: 14px;
    background: #ffffff;
    box-shadow: 0 24px 58px rgba(7, 19, 51, 0.24);
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-modal-card img {
    width: 100%;
    max-height: 68vh;
    border-radius: 9px;
    object-fit: contain;
    background: #eef3fb;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-modal-preview {
    display: grid;
    min-height: 220px;
    place-items: center;
    border-radius: 9px;
    padding: 16px;
    background: #eef3fb;
    text-align: center;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-modal-preview[hidden] {
    display: none !important;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-modal-preview .axa-demo-preview-visual,
.auth-body[data-route="customer/demo-link"] .axa-demo-review-modal-preview img {
    width: 100%;
    min-height: 220px;
    border-radius: 8px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-modal-card strong {
    color: #071333;
    font-size: 15px;
    font-weight: 900;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-modal-card p {
    margin: 3px 0 0;
    color: #526078;
    font-size: 12px;
    line-height: 1.35;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: rgba(7, 19, 51, 0.78);
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-scroll-hint {
    position: fixed;
    z-index: 70;
    left: calc(50% + min(245px, 42vw));
    bottom: max(14px, env(safe-area-inset-bottom));
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: #071333;
    box-shadow: 0 14px 30px rgba(7, 19, 51, 0.24);
    transform: translateX(-50%);
    cursor: pointer;
    animation: axa-scroll-hint-pulse 1.1s ease-in-out infinite;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-scroll-hint[hidden] {
    display: none !important;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-scroll-hint span {
    width: 12px;
    height: 12px;
    border-right: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
    transform: translateY(-2px) rotate(45deg);
}

@keyframes axa-scroll-hint-pulse {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.82;
    }

    50% {
        transform: translateX(-50%) translateY(7px);
        opacity: 1;
    }
}

@keyframes axa-scroll-hint-mobile-pulse {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.82;
    }

    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.axa-access-admin {
    --axa-access-blue: #003399;
    --axa-access-blue-strong: #002b85;
    --axa-access-ink: #111827;
    --axa-access-muted: #667085;
    --axa-access-line: #d9e0ec;
    --axa-access-soft: #f6f8fb;
    --axa-access-green: #0f8a4b;
    --axa-access-orange: #c85f0d;
    --axa-access-red: #df1b2f;
    display: grid;
    grid-template-columns: 232px minmax(0, 1fr);
    min-height: 100vh;
    background: #ffffff;
    color: var(--axa-access-ink);
}

.axa-access-admin *,
.axa-access-admin *::before,
.axa-access-admin *::after {
    box-sizing: border-box;
}

.axa-access-sidebar {
    position: sticky;
    top: 0;
    display: grid;
    min-height: 100vh;
    grid-template-rows: auto 1fr auto;
    gap: 24px;
    padding: 28px 18px;
    background: linear-gradient(180deg, #003399 0%, #002676 100%);
    color: #ffffff;
}

.axa-access-brand {
    display: grid;
    gap: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.25;
    text-decoration: none;
}

.axa-access-brand img {
    width: 82px;
    height: 82px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    object-fit: contain;
}

.axa-access-nav {
    display: grid;
    align-content: start;
    gap: 10px;
    padding-top: 22px;
}

.axa-access-nav a,
.axa-access-topbar-actions a,
.axa-access-row-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    text-decoration: none;
}

.axa-access-nav a {
    min-height: 48px;
    border-radius: 8px;
    padding: 0 14px;
    color: #dfe8ff;
}

.axa-access-nav a.is-active,
.axa-access-nav a:hover {
    background: #ffffff;
    color: var(--axa-access-blue);
}

.axa-access-nav svg,
.axa-access-topbar-actions svg,
.axa-access-kpi-icon svg,
.axa-access-search svg,
.axa-access-avatar svg,
.axa-access-modal-close svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.axa-access-sidebar-user {
    display: grid;
    gap: 3px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    padding-top: 18px;
}

.axa-access-sidebar-user span {
    font-size: 14px;
    font-weight: 850;
}

.axa-access-sidebar-user small {
    color: #c7d7ff;
    font-size: 12px;
    font-weight: 700;
}

.axa-access-workspace {
    display: grid;
    min-width: 0;
    grid-template-rows: auto 1fr;
    background: #ffffff;
}

.axa-access-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    border-bottom: 1px solid var(--axa-access-line);
    padding: 0 32px;
}

.axa-access-topbar h1 {
    margin: 0;
    color: #101532;
    font-size: 28px;
    font-weight: 850;
    line-height: 1.1;
    letter-spacing: 0;
}

.axa-access-topbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #2f3b56;
}

.axa-access-topbar-actions span {
    font-size: 14px;
    font-weight: 750;
}

.axa-access-topbar-actions a {
    border-left: 1px solid var(--axa-access-line);
    padding-left: 14px;
}

.axa-access-main {
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 16px 28px 28px;
}

.axa-access-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.axa-access-kpis article,
.axa-access-panel,
.axa-access-detail {
    min-width: 0;
    border: 1px solid var(--axa-access-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.04);
}

.axa-access-panel,
.axa-access-detail {
    max-width: 100%;
    overflow: hidden;
}

.axa-access-kpis article {
    display: flex;
    min-height: 104px;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
}

.axa-access-kpi-icon {
    display: grid;
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    background: #edf2ff;
    color: var(--axa-access-blue);
}

.axa-access-kpi-icon.is-red {
    background: #fff0f2;
    color: var(--axa-access-red);
}

.axa-access-kpis span,
.axa-access-detail p,
.axa-access-detail-list dt,
.axa-access-timeline small,
.axa-access-table small {
    color: var(--axa-access-muted);
}

.axa-access-kpis article > div {
    display: grid;
    gap: 5px;
}

.axa-access-kpis article > div > span {
    font-size: 14px;
    font-weight: 800;
}

.axa-access-kpis strong {
    color: #101532;
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0;
}

.axa-access-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.axa-access-left {
    display: grid;
    min-width: 0;
    gap: 10px;
}

.axa-access-filters {
    display: grid;
    grid-template-columns: minmax(220px, 1.45fr) repeat(3, minmax(126px, 0.7fr)) auto auto;
    gap: 12px;
    align-items: end;
    border-bottom: 1px solid var(--axa-access-line);
    padding: 14px;
}

.axa-access-filters label {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.axa-access-filters label > span {
    color: #344054;
    font-size: 12px;
    font-weight: 800;
}

.axa-access-filters input,
.axa-access-filters select {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--axa-access-line);
    border-radius: 7px;
    padding: 0 12px;
    background: #ffffff;
    color: var(--axa-access-ink);
    font: inherit;
    font-size: 14px;
}

.axa-access-search {
    position: relative;
}

.axa-access-search svg {
    position: absolute;
    left: 12px;
    bottom: 11px;
    width: 18px;
    height: 18px;
    color: #7a869c;
}

.axa-access-search input {
    padding-left: 38px;
}

.axa-access-filters button,
.axa-access-reset,
.axa-access-actions button,
.axa-access-actions a,
.axa-access-audit-user-form button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    padding: 0 18px;
    font: inherit;
    font-size: 14px;
    font-weight: 850;
    letter-spacing: 0;
    text-decoration: none;
    cursor: pointer;
}

.axa-access-filters button,
.axa-access-actions .is-primary,
.axa-access-audit-user-form button {
    border: 1px solid var(--axa-access-blue);
    background: var(--axa-access-blue);
    color: #ffffff;
}

.axa-access-reset {
    border: 1px solid var(--axa-access-line);
    background: #ffffff;
    color: #344054;
}

.axa-access-actions .is-outline {
    border: 1px solid var(--axa-access-blue);
    background: #ffffff;
    color: var(--axa-access-blue);
}

.axa-access-table-wrap {
    overflow-x: auto;
}

.axa-access-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
}

.axa-access-table th,
.axa-access-table td {
    border-bottom: 1px solid #e6ebf3;
    padding: 12px 14px;
    text-align: left;
    vertical-align: middle;
}

.axa-access-table th {
    background: #f8fafd;
    color: #344054;
    font-size: 12px;
    font-weight: 850;
}

.axa-access-table td {
    color: #1d2939;
    font-size: 14px;
    font-weight: 650;
}

.axa-access-table tbody tr.is-selected {
    box-shadow: inset 4px 0 0 var(--axa-access-blue);
}

.axa-access-table tbody tr.is-selected td {
    background: #eef4ff;
}

.axa-access-table tbody tr:hover td {
    background: #f8fbff;
}

.axa-access-table td:first-child a {
    display: block;
    color: #1d2939;
    font-weight: 850;
    text-decoration: none;
}

.axa-access-table small {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    font-weight: 650;
}

.axa-access-status {
    display: inline-flex;
    min-width: 80px;
    justify-content: center;
    border: 1px solid currentColor;
    border-radius: 999px;
    padding: 4px 10px;
    background: #ffffff;
    font-size: 12px;
    font-weight: 850;
}

.axa-access-status.is-green,
.axa-access-dot.is-green {
    color: var(--axa-access-green);
}

.axa-access-status.is-orange,
.axa-access-dot.is-orange {
    color: var(--axa-access-orange);
}

.axa-access-status.is-red,
.axa-access-dot.is-red {
    color: var(--axa-access-red);
}

.axa-access-status.is-muted,
.axa-access-dot.is-muted {
    color: #667085;
}

.axa-access-row-action {
    color: var(--axa-access-blue);
}

.axa-access-admin-flag-form {
    margin: 0;
}

.axa-access-admin-flag {
    display: inline-flex;
    min-width: 76px;
    min-height: 34px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border: 1px solid #cfd8ea;
    border-radius: 7px;
    padding: 0 8px;
    background: #ffffff;
    color: #344054;
    font: inherit;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
    cursor: pointer;
}

.axa-access-admin-flag-track {
    display: inline-flex;
    width: 36px;
    height: 20px;
    flex: 0 0 auto;
    align-items: center;
    border-radius: 999px;
    padding: 2px;
    background: #cfd8ea;
}

.axa-access-admin-flag-track span {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.18);
    transform: translateX(0);
    transition: transform 0.16s ease;
}

.axa-access-admin-flag.is-on {
    border-color: #b9c9f4;
    background: #eef4ff;
    color: var(--axa-access-blue);
}

.axa-access-admin-flag.is-on .axa-access-admin-flag-track {
    background: var(--axa-access-blue);
}

.axa-access-admin-flag.is-on .axa-access-admin-flag-track span {
    transform: translateX(16px);
}

.axa-access-admin-flag.is-table {
    min-width: 54px;
    justify-content: center;
    padding: 0 6px;
}

.axa-access-admin-flag.is-table .axa-access-admin-flag-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.axa-access-admin-flag.is-locked {
    cursor: not-allowed;
    opacity: 0.72;
}

.axa-access-admin-flag:focus-visible {
    outline: 3px solid rgba(0, 51, 153, 0.22);
    outline-offset: 2px;
}

.axa-access-admin-flag-text {
    min-width: 22px;
    text-align: left;
}

.axa-access-admin-flag-panel {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(112px, auto);
    gap: 12px;
    align-items: center;
    border: 1px solid #e2e8f4;
    border-radius: 8px;
    padding: 10px 12px;
    background: #f8fafd;
}

.axa-access-admin-flag-panel > span {
    color: #344054;
    font-size: 13px;
    font-weight: 850;
}

.axa-access-table-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--axa-access-line);
    padding: 12px 14px;
    color: #344054;
    font-size: 13px;
    font-weight: 750;
}

.axa-access-detail {
    display: grid;
    gap: 16px;
    padding: 24px 20px;
}

.axa-access-avatar {
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    border-radius: 999px;
    background: #edf2ff;
    color: var(--axa-access-blue);
}

.axa-access-avatar svg {
    width: 42px;
    height: 42px;
}

.axa-access-detail h2,
.axa-access-section-head h2 {
    margin: 0;
    color: #101532;
    font-size: 22px;
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: 0;
}

.axa-access-section-head h2 {
    font-size: 16px;
}

.axa-access-detail p {
    margin: -10px 0 0;
    font-size: 14px;
    font-weight: 750;
}

.axa-access-detail-list {
    display: grid;
    gap: 0;
    margin: 4px 0 0;
    border-top: 1px solid var(--axa-access-line);
    padding-top: 8px;
}

.axa-access-detail-list div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 42px;
}

.axa-access-detail-list dt {
    font-size: 13px;
    font-weight: 800;
}

.axa-access-detail-list dd {
    margin: 0;
    color: #1d2939;
    font-size: 13px;
    font-weight: 850;
    text-align: right;
}

.axa-access-detail-list.is-compact {
    gap: 6px;
}

.axa-access-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
    border-radius: 999px;
    background: currentColor;
}

.axa-access-detail-block {
    display: grid;
    gap: 10px;
    border-top: 1px solid var(--axa-access-line);
    padding-top: 16px;
}

.axa-access-detail-block h3 {
    margin: 0;
    color: #344054;
    font-size: 13px;
    font-weight: 850;
}

.axa-access-module-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.axa-access-module-list span {
    border-radius: 999px;
    padding: 7px 11px;
    background: #edf2ff;
    color: var(--axa-access-blue);
    font-size: 12px;
    font-weight: 850;
}

.axa-access-reason {
    display: grid;
    gap: 4px;
    border: 1px solid #ffe2b7;
    border-radius: 8px;
    padding: 10px 12px;
    background: #fff8ee;
    color: #9a4d0a;
    font-size: 12px;
    font-weight: 750;
}

.axa-access-reason strong {
    font-size: 12px;
    font-weight: 900;
}

.axa-access-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    border-top: 1px solid var(--axa-access-line);
    padding-top: 16px;
}

.axa-access-actions form,
.axa-access-actions button,
.axa-access-actions a {
    min-width: 0;
    width: 100%;
}

.axa-access-actions .is-outline-danger {
    border: 1px solid var(--axa-access-red);
    background: #ffffff;
    color: var(--axa-access-red);
}

.axa-access-actions .is-danger {
    border: 1px solid var(--axa-access-red);
    background: var(--axa-access-red);
    color: #ffffff;
}

.axa-access-audit {
    padding: 0;
}

.axa-access-audit-page {
    min-height: 360px;
}

.axa-access-section-head {
    border-bottom: 1px solid var(--axa-access-line);
    padding: 12px 16px;
}

.axa-access-audit-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.axa-access-audit-head p {
    margin: 5px 0 0;
    color: var(--axa-access-muted);
    font-size: 13px;
    font-weight: 750;
}

.axa-access-audit-user-form {
    display: flex;
    align-items: end;
    gap: 10px;
}

.axa-access-audit-user-form label {
    display: grid;
    gap: 6px;
}

.axa-access-audit-user-form label span {
    color: #344054;
    font-size: 12px;
    font-weight: 800;
}

.axa-access-audit-user-form select {
    min-width: 240px;
    min-height: 42px;
    border: 1px solid var(--axa-access-line);
    border-radius: 7px;
    padding: 0 12px;
    background: #ffffff;
    color: var(--axa-access-ink);
    font: inherit;
    font-size: 14px;
}

.axa-access-timeline {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.axa-access-timeline li {
    display: grid;
    grid-template-columns: 14px 164px minmax(130px, 1fr) minmax(120px, 0.8fr) 70px;
    gap: 12px;
    align-items: center;
    min-height: 36px;
    border-bottom: 1px solid #eef2f7;
    padding: 0 16px;
    color: #1d2939;
    font-size: 13px;
    font-weight: 700;
}

.axa-access-timeline li:last-child {
    border-bottom: 0;
}

.axa-access-timeline li > span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--axa-access-blue);
}

.axa-access-timeline time,
.axa-access-timeline em {
    color: #344054;
    font-style: normal;
}

.axa-access-empty {
    padding: 26px;
    color: var(--axa-access-muted);
    font-size: 14px;
    font-weight: 750;
    text-align: center;
}

.axa-access-empty.is-compact {
    padding: 16px;
}

.axa-access-modal {
    position: fixed;
    z-index: 80;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
}

.axa-access-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 18, 45, 0.46);
    backdrop-filter: blur(2px);
}

.axa-access-modal-card {
    position: relative;
    z-index: 1;
    width: min(430px, calc(100vw - 32px));
    max-height: min(820px, calc(100vh - 40px));
    overflow: auto;
    border: 1px solid var(--axa-access-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(16, 24, 40, 0.24);
}

.axa-access-modal-card .axa-access-detail {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.axa-access-modal-close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--axa-access-line);
    border-radius: 999px;
    background: #ffffff;
    color: #344054;
}

@media (max-width: 1180px) {
    .axa-access-admin {
        grid-template-columns: 1fr;
    }

    .axa-access-sidebar {
        position: static;
        min-height: auto;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto;
        align-items: center;
        padding: 16px 18px;
    }

    .axa-access-brand {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
    }

    .axa-access-brand img {
        width: 48px;
        height: 48px;
    }

    .axa-access-nav {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 0;
    }

    .axa-access-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .axa-access-topbar,
    .axa-access-sidebar {
        align-items: stretch;
        flex-direction: column;
    }

    .axa-access-sidebar {
        grid-template-columns: 1fr;
    }

    .axa-access-nav {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .axa-access-kpis,
    .axa-access-filters {
        grid-template-columns: 1fr 1fr;
    }

    .axa-access-filters .axa-access-search,
    .axa-access-filters button,
    .axa-access-reset {
        grid-column: 1 / -1;
    }

    .axa-access-timeline li {
        grid-template-columns: 12px minmax(0, 1fr);
        gap: 8px;
        padding: 10px 14px;
    }

    .axa-access-timeline li time,
    .axa-access-timeline li strong,
    .axa-access-timeline li em,
    .axa-access-timeline li small {
        grid-column: 2;
    }

    .axa-access-audit-head,
    .axa-access-audit-user-form {
        display: grid;
        align-items: stretch;
    }

    .axa-access-audit-user-form select {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 620px) {
    .axa-access-topbar {
        display: grid;
        gap: 12px;
        min-height: auto;
        padding: 18px;
    }

    .axa-access-main {
        padding: 12px;
    }

    .axa-access-kpis,
    .axa-access-filters,
    .axa-access-actions {
        grid-template-columns: 1fr;
    }

    .axa-access-kpis article {
        min-height: 86px;
    }

    .axa-access-detail-list div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .axa-access-detail-list dd {
        text-align: left;
    }

    .axa-access-modal-card .axa-access-detail-list div {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
        min-height: 32px;
    }

    .axa-access-modal-card .axa-access-detail-list dd {
        text-align: right;
    }

    .axa-access-modal-card .axa-access-detail {
        gap: 12px;
        padding: 20px;
    }

    .axa-access-modal-card .axa-access-avatar {
        width: 58px;
        height: 58px;
    }

    .axa-access-modal-card .axa-access-avatar svg {
        width: 32px;
        height: 32px;
    }

    .axa-access-modal-card .axa-access-detail-block,
    .axa-access-modal-card .axa-access-actions {
        padding-top: 12px;
    }

    .axa-access-modal-card .axa-access-actions {
        gap: 8px;
    }

    .axa-access-modal-card .axa-access-actions button,
    .axa-access-modal-card .axa-access-actions a {
        min-height: 40px;
    }
}

@media (max-width: 420px) {
    .auth-body[data-route="customer/demo-link"] .axa-demo-scroll-hint {
        right: max(12px, env(safe-area-inset-right));
        left: auto;
        bottom: max(12px, env(safe-area-inset-bottom));
        width: 36px;
        height: 36px;
        transform: none;
        animation-name: axa-scroll-hint-mobile-pulse;
    }

    .auth-body[data-route="customer/demo-link"] .axa-demo-scroll-hint span {
        width: 10px;
        height: 10px;
        border-right-width: 2px;
        border-bottom-width: 2px;
    }

    .auth-body[data-route="customer/demo-link"] .axa-demo-customer-shell {
        padding: 0;
    }

    .auth-body[data-route="customer/demo-link"] .axa-demo-customer-phone {
        width: 100%;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .auth-body[data-route="customer/demo-link"] .axa-demo-customer-head {
        border-radius: 0;
    }

    .auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-grid,
    .auth-body[data-route="customer/demo-link"] .axa-demo-final-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 420px) {
    .auth-body .axa-demo-login.is-customer-auth-flow .axa-demo-login-card,
    .auth-body .axa-demo-login.is-customer-auth-flow .axa-demo-login-grid {
        min-height: 0;
    }
}

/* Keep the approved mockup card proportions even on narrow phones. */
@media (max-width: 420px) {
    .auth-body[data-route="customer/demo-link"] .axa-demo-customer-shell,
    .auth-body[data-route="customer/demo-login"] .axa-demo-login,
    .auth-body[data-route="customer/demo-register"] .axa-demo-login,
    .auth-body .axa-demo-login.is-customer-auth-flow,
    .axa-demo-welcome-shell {
        padding: 18px 10px;
    }

    .auth-body[data-route="customer/demo-link"] .axa-demo-customer-phone,
    .auth-body[data-route="customer/demo-login"] .axa-demo-login-grid,
    .auth-body[data-route="customer/demo-register"] .axa-demo-login-grid,
    .auth-body .axa-demo-login.is-customer-auth-flow .axa-demo-login-grid,
    .axa-demo-welcome-panel {
        width: min(100%, 360px);
        border-radius: 8px;
    }

    .auth-body[data-route="customer/demo-login"] .axa-demo-login-card,
    .auth-body[data-route="customer/demo-register"] .axa-demo-login-card,
    .auth-body .axa-demo-login.is-customer-auth-flow .axa-demo-login-card,
    .axa-demo-welcome-panel {
        min-height: 0;
        border: 1px solid #cfdbea;
        border-radius: 8px;
        box-shadow: 0 12px 28px rgba(15, 31, 55, 0.10);
    }

    .auth-body[data-route="customer/demo-link"] .axa-demo-customer-phone {
        border: 1px solid #cfdbea;
    }
}

/* Route aliases used by the collection controllers after redirects. */
.auth-body .site-footer {
    display: none;
}

.auth-body .axa-demo-login.is-customer-auth-flow {
    display: grid;
    min-height: 100vh;
    place-items: start center;
    padding: 22px 14px;
    background: #eaf1f7;
}

.auth-body .axa-demo-login.is-customer-auth-flow .axa-demo-login-topbar {
    display: none;
}

.auth-body .axa-demo-login.is-customer-auth-flow .axa-demo-login-grid {
    display: grid;
    width: min(100%, 360px);
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin: 0;
}

.auth-body .axa-demo-login.is-customer-auth-flow .axa-demo-login-card {
    display: grid;
    gap: 12px;
    border: 1px solid #cfdbea;
    border-radius: 8px;
    padding: 16px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 31, 55, 0.10);
}

.auth-body .axa-demo-login.is-customer-auth-flow .axa-demo-login-form,
.auth-body .axa-demo-login.is-customer-auth-flow .axa-demo-register-card {
    display: grid;
    gap: 11px;
}

@media (max-width: 420px) {
    .auth-body .axa-demo-login.is-customer-auth-flow {
        padding: 0;
    }

    .auth-body .axa-demo-login.is-customer-auth-flow .axa-demo-login-grid,
    .auth-body .axa-demo-login.is-customer-auth-flow .axa-demo-login-card {
        width: 100%;
        min-height: 100vh;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        box-shadow: none;
    }
}

/* Customer photo collection approved mobile mockups, July 2026. */
.auth-body[data-route="customer/demo-login"],
.auth-body[data-route="customer/demo-register"],
.auth-body[data-route="customer/demo-link"] {
    background: #eaf1f7;
}

.auth-body[data-route="customer/demo-login"] .axa-demo-login,
.auth-body[data-route="customer/demo-register"] .axa-demo-login {
    display: grid;
    min-height: 100vh;
    place-items: start center;
    padding: 22px 14px;
    background: #eaf1f7;
}

.auth-body[data-route="customer/demo-login"] .axa-demo-login-topbar,
.auth-body[data-route="customer/demo-register"] .axa-demo-login-topbar {
    display: none;
}

.auth-body[data-route="customer/demo-login"] .axa-demo-login-grid,
.auth-body[data-route="customer/demo-register"] .axa-demo-login-grid {
    display: grid;
    width: min(100%, 360px);
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin: 0;
}

.auth-body[data-route="customer/demo-login"] .axa-demo-login-card,
.auth-body[data-route="customer/demo-register"] .axa-demo-login-card,
.axa-demo-welcome-panel {
    display: grid;
    gap: 12px;
    border: 1px solid #cfdbea;
    border-radius: 8px;
    padding: 16px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 31, 55, 0.10);
}

.axa-demo-login-form,
.auth-body[data-route="customer/demo-register"] .axa-demo-register-card {
    display: grid;
    gap: 11px;
}

.axa-demo-auth-card-head {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #071333;
    font-size: 12px;
    font-weight: 900;
}

.axa-demo-auth-card-head span {
    border-radius: 999px;
    padding: 5px 8px;
    background: #eef3f8;
    color: #69778c;
    font-size: 10px;
    font-weight: 800;
}

.axa-demo-auth-card-head .axa-demo-auth-card-brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.axa-demo-auth-card-head .axa-demo-auth-card-brand .axa-demo-logo-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    border-radius: 7px;
}

.auth-body .axa-demo-login.is-customer-auth-flow .axa-demo-auth-card-head .axa-demo-auth-card-brand span {
    overflow: hidden;
    padding: 0;
    background: transparent;
    color: #071333;
    font-size: 18px !important;
    font-weight: 900;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.auth-body[data-route="customer/demo-login"] .axa-demo-login-card h1,
.auth-body[data-route="customer/demo-register"] .axa-demo-login-card h1,
.axa-demo-welcome-copy h1 {
    margin: 0;
    color: #101b2e;
    font-size: 22px;
    line-height: 1.12;
}

.auth-body[data-route="customer/demo-login"] .axa-demo-login-card p,
.auth-body[data-route="customer/demo-register"] .axa-demo-login-card p,
.axa-demo-welcome-copy p {
    margin: 0;
    color: #5b6980;
    font-size: 12px;
    line-height: 1.42;
}

.auth-body[data-route="customer/demo-login"] .axa-demo-login-field,
.auth-body[data-route="customer/demo-register"] .axa-demo-login-field,
.axa-demo-session-link-field {
    gap: 5px;
    color: #26344b;
    font-size: 11px;
    font-weight: 850;
}

.auth-body[data-route="customer/demo-login"] .axa-demo-login-field input,
.auth-body[data-route="customer/demo-register"] .axa-demo-login-field input,
.axa-demo-session-link-field input {
    height: 42px;
    border-radius: 7px;
    padding: 0 10px;
    background: #ffffff;
    font-size: 12px;
}

.axa-demo-login-actions,
.axa-demo-session-link-actions {
    display: grid;
    gap: 8px;
}

.axa-demo-login-actions {
    grid-template-columns: minmax(0, 1fr) max-content;
}

.axa-demo-session-link-actions {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.auth-body[data-route="customer/demo-login"] .axa-demo-login-submit,
.auth-body[data-route="customer/demo-login"] .axa-demo-login-secondary-cta,
.auth-body[data-route="customer/demo-register"] .axa-demo-login-submit,
.auth-body[data-route="customer/demo-register"] .axa-demo-login-secondary-cta,
.axa-demo-session-link-actions > *,
.axa-demo-welcome-secondary-actions > *,
.axa-demo-welcome-actions .axa-demo-primary-cta {
    min-height: 42px;
    border-radius: 7px;
    box-shadow: none;
    font-size: 12px;
    font-weight: 900;
}

.auth-body[data-route="customer/demo-login"] .axa-demo-login-submit,
.auth-body[data-route="customer/demo-register"] .axa-demo-login-submit,
.axa-demo-welcome-actions .axa-demo-primary-cta,
.axa-demo-session-link-actions .axa-demo-primary {
    background: #1262f2;
}

.auth-body[data-route="customer/demo-login"] .axa-demo-login-secondary-cta,
.auth-body[data-route="customer/demo-register"] .axa-demo-login-secondary-cta,
.axa-demo-session-link-actions .axa-demo-secondary,
.axa-demo-welcome-secondary-actions .axa-demo-secondary {
    border-color: #d8e2ef;
    background: #edf3fa;
    color: #0d2442;
}

.auth-body[data-route="customer/demo-login"] .axa-demo-login-secondary-cta,
.auth-body[data-route="collection/login"] .axa-demo-login-secondary-cta {
    white-space: nowrap;
}

.auth-body[data-route="customer/demo-login"] .axa-demo-login-disclosure {
    margin: 0;
    background: #ffffff;
}

.auth-body[data-route="customer/demo-login"] .axa-demo-login-disclosure .axa-demo-resend-form {
    gap: 9px;
    padding: 0 10px 10px;
}

.auth-body[data-route="customer/demo-register"] .axa-demo-register-grid {
    gap: 8px;
}

.axa-demo-welcome-shell {
    display: grid;
    min-height: 100vh;
    place-items: start center;
    padding: 22px 14px;
    background: #eaf1f7;
}

.axa-demo-welcome-panel {
    width: min(100%, 360px);
}

.axa-demo-welcome-brand {
    display: none;
}

.axa-demo-welcome-copy {
    display: grid;
    gap: 8px;
}

.axa-demo-welcome-user,
.axa-demo-welcome-status,
.axa-demo-welcome-counter {
    display: grid;
    gap: 3px;
    margin: 0;
    border: 1px solid #e0e8f2;
    border-radius: 8px;
    padding: 10px;
    background: #f8fbff;
    color: #5b6980;
    font-size: 11px;
    font-weight: 800;
}

.axa-demo-welcome-user strong {
    color: #101b2e;
    font-size: 13px;
}

.axa-demo-session-link-panel {
    display: grid;
    gap: 10px;
    border: 1px solid #d8e2ef;
    border-radius: 8px;
    padding: 12px;
    background: #ffffff;
}

.axa-demo-session-link-panel[hidden] {
    display: none !important;
}

.is-session-link-ready .axa-demo-welcome-panel > .axa-demo-auth-card-head,
.is-session-link-ready .axa-demo-welcome-panel > .axa-demo-welcome-copy,
.is-session-link-ready .axa-demo-welcome-panel > .axa-demo-welcome-actions,
.is-session-link-ready .axa-demo-welcome-panel > .axa-demo-welcome-status,
.is-session-link-ready .axa-demo-welcome-panel > .axa-demo-welcome-secondary-actions {
    display: none !important;
}

.axa-demo-welcome-secondary-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-customer-shell {
    min-height: 100vh;
    padding: 18px 10px;
    background: #eaf1f7;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-customer-phone {
    width: min(100%, 360px);
    min-height: calc(100vh - 36px);
    border-color: #cfdbea;
    border-radius: 8px;
    background: #f8fafc;
    box-shadow: 0 12px 28px rgba(15, 31, 55, 0.10);
}

.auth-body[data-route="customer/demo-link"] .axa-demo-customer-head {
    position: static;
    min-height: 46px;
    border-radius: 8px 8px 0 0;
    padding: 0 14px;
    background: #ffffff;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-customer-brand {
    gap: 8px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-customer-head .axa-demo-logo-mark {
    width: 26px;
    height: 26px;
    border-radius: 5px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-customer-head a {
    font-size: 12px;
    font-weight: 900;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-screen {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 14px;
    background: #f8fafc;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-screen[hidden] {
    display: none !important;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-screen[data-axa-step-label]::before {
    content: attr(data-axa-step-label);
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    border-radius: 999px;
    padding: 5px 8px;
    background: #eef3f8;
    color: #69778c;
    font-size: 10px;
    font-weight: 850;
    line-height: 1;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-customer-copy {
    display: grid;
    gap: 6px;
    min-height: 92px;
    border: 1px solid #d8e2ef;
    border-radius: 8px;
    padding: 14px 72px 14px 14px;
    background: #ffffff;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-customer-copy h1,
.auth-body[data-route="customer/demo-link"] .axa-demo-photo-step h2 {
    margin: 0;
    color: #101b2e;
    font-size: 22px;
    line-height: 1.12;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-customer-copy p,
.auth-body[data-route="customer/demo-link"] .axa-demo-photo-step p {
    margin: 0;
    color: #5b6980;
    font-size: 16px;
    line-height: 1.55;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-claim-summary-card,
.auth-body[data-route="customer/demo-link"] .axa-demo-gps-panel,
.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-state,
.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-status,
.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-summary,
.auth-body[data-route="customer/demo-link"] .axa-demo-correction-panel,
.auth-body[data-route="customer/demo-link"] .axa-demo-safety-card,
.auth-body[data-route="customer/demo-link"] .axa-demo-final-gallery,
.auth-body[data-route="customer/demo-link"] .axa-demo-package-summary,
.auth-body[data-route="customer/demo-link"] .axa-demo-photo-ai-summary,
.auth-body[data-route="customer/demo-link"] .axa-demo-done-card {
    margin-top: 0;
    border: 1px solid #d8e2ef;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: none;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-claim-summary-card,
.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-summary,
.auth-body[data-route="customer/demo-link"] .axa-demo-final-gallery,
.auth-body[data-route="customer/demo-link"] .axa-demo-done-card {
    padding: 12px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-claim-summary-card > span,
.auth-body[data-route="customer/demo-link"] .axa-demo-final-gallery-head span,
.auth-body[data-route="customer/demo-link"] .axa-demo-package-summary span,
.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-summary span {
    color: #6c788c;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-claim-summary-card strong {
    margin-top: 3px;
    color: #101b2e;
    font-size: 15px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-claim-summary-card dl,
.auth-body[data-route="customer/demo-link"] .axa-demo-intro-details dl {
    display: grid;
    gap: 8px;
    margin: 10px 0 0;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-claim-summary-card dl div,
.auth-body[data-route="customer/demo-link"] .axa-demo-intro-details dl div,
.auth-body[data-route="customer/demo-link"] .axa-demo-privacy-detail-list div {
    display: grid;
    gap: 4px;
    border: 1px solid #e1e9f3;
    border-radius: 7px;
    padding: 9px;
    background: #f8fbff;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-claim-summary-card svg {
    display: none;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-claim-summary-card dt,
.auth-body[data-route="customer/demo-link"] .axa-demo-intro-details dt {
    color: #6c788c;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-claim-summary-card dd,
.auth-body[data-route="customer/demo-link"] .axa-demo-intro-details dd {
    margin: 0;
    color: #101b2e;
    font-size: 12px;
    font-weight: 850;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-disclosure {
    border-color: #d8e2ef;
    border-radius: 8px;
    background: #ffffff;
}

.auth-body .axa-demo-login-disclosure:not([open]) > :not(summary),
.auth-body[data-route="customer/demo-link"] .axa-demo-disclosure:not([open]) > :not(summary) {
    display: none !important;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-disclosure > summary {
    min-height: 40px;
    padding: 0 10px;
    color: #101b2e;
    font-size: 12px;
    font-weight: 900;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-consent-panel {
    display: grid;
    gap: 8px;
    margin-top: 0;
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-consent {
    align-items: center;
    min-height: 40px;
    border-color: #d8e2ef;
    border-radius: 8px;
    padding: 9px;
    background: #ffffff;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-consent input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-consent-copy {
    gap: 0;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-consent strong {
    font-size: 12px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-consent-email-field,
.auth-body[data-route="customer/demo-link"] .axa-demo-field {
    margin-top: 0;
    gap: 5px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-field input,
.auth-body[data-route="customer/demo-link"] .axa-demo-field select,
.auth-body[data-route="customer/demo-link"] .axa-demo-field textarea {
    min-height: 42px;
    border-radius: 7px;
    padding: 9px 10px;
    font-size: 12px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-field span,
.auth-body[data-route="customer/demo-link"] .axa-demo-unavailable-panel label span {
    color: #26344b;
    font-size: 11px;
    font-weight: 900;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-field small,
.auth-body[data-route="customer/demo-link"] .axa-demo-consent-panel p,
.auth-body[data-route="customer/demo-link"] .axa-demo-final-gallery-head small,
.auth-body[data-route="customer/demo-link"] [data-axa-document-hint] {
    color: #6c788c;
    font-size: 10.5px;
    line-height: 1.35;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-privacy-detail-list {
    display: grid;
    gap: 7px;
    padding: 10px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-privacy-detail-list strong {
    color: #101b2e;
    font-size: 12px;
    font-weight: 900;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-privacy-detail-list p {
    margin: 0;
    color: #5b6980;
    font-size: 11px;
    line-height: 1.35;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-method {
    display: grid;
    gap: 8px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 8px;
    background: #e9f0f7;
    padding: 2px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-tabs button {
    min-height: 36px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #26344b;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-tabs button.is-active {
    background: #ffffff;
    color: #1262f2;
    box-shadow: 0 1px 4px rgba(15, 31, 55, 0.10);
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-tab-panel {
    display: grid;
    border: 1px solid #d8e2ef;
    border-radius: 8px;
    padding: 10px;
    background: #ffffff;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-tab-panel[hidden] {
    display: none !important;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-file-picker-ui {
    grid-template-columns: auto minmax(0, 1fr);
    border-radius: 7px;
    padding: 8px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-file-picker-ui > span {
    border-radius: 6px;
    padding: 7px 9px;
    font-size: 11px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-wide-action,
.auth-body[data-route="customer/demo-link"] .axa-demo-primary,
.auth-body[data-route="customer/demo-link"] .axa-demo-secondary,
.auth-body[data-route="customer/demo-link"] .axa-demo-primary-cta {
    min-height: 42px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 900;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-primary,
.auth-body[data-route="customer/demo-link"] .axa-demo-primary-cta {
    background: #1262f2;
    box-shadow: 0 10px 18px rgba(18, 98, 242, 0.18);
}

.auth-body[data-route="customer/demo-link"] .axa-demo-primary:disabled {
    cursor: not-allowed;
    background: #c4cfdf;
    color: #526178;
    box-shadow: none;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-secondary {
    border-color: #d8e2ef;
    background: #edf3fa;
    color: #0d2442;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 0;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-button-row > * {
    min-width: 0;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-intro-actions {
    grid-template-columns: minmax(0, 1fr);
}

.auth-body[data-route="customer/demo-link"] .axa-demo-intro-actions .axa-demo-primary-cta {
    grid-column: auto;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-intro-reset-form[hidden],
.auth-body[data-route="customer/demo-link"] .axa-demo-customer-reset-form,
.auth-body[data-route="customer/demo-link"] .axa-demo-voice-dock,
.auth-body[data-route="customer/demo-link"] .axa-demo-scroll-hint {
    display: none !important;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-state,
.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-status,
.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-processing {
    padding: 10px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-summary {
    gap: 0;
    overflow: hidden;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-summary > div {
    padding: 10px 0;
    border-bottom: 1px solid #edf1f6;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-summary > div:first-child {
    margin: -4px -4px 6px;
    border: 0;
    border-radius: 7px;
    padding: 10px;
    background: #e7f8ee;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-summary > div:last-child {
    border-bottom: 0;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-summary strong,
.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-summary p {
    font-size: 13px;
    line-height: 1.3;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-confirm-actions {
    border: 0;
    padding: 0;
    background: transparent;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-confirm-actions > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.auth-body[data-route="customer/demo-link"] .is-denuncia-summary-ready [data-axa-screen="denuncia"] .axa-demo-denuncia-method,
.auth-body[data-route="customer/demo-link"] .is-denuncia-summary-ready [data-axa-screen="denuncia"] [data-axa-analyze-denuncia],
.auth-body[data-route="customer/demo-link"] .is-denuncia-summary-ready [data-axa-screen="denuncia"] .axa-demo-denuncia-state,
.auth-body[data-route="customer/demo-link"] .is-denuncia-summary-ready [data-axa-screen="denuncia"] .axa-demo-denuncia-status {
    display: none;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-gps-panel {
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-gps-map {
    min-height: 210px;
    border-radius: 8px;
    background: #e7f0f8;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-gps-pin {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #1262f2;
    transform: translate(-50%, -50%);
}

.auth-body[data-route="customer/demo-link"] .axa-demo-gps-pin::after {
    inset: 7px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-gps-reference,
.auth-body[data-route="customer/demo-link"] .axa-demo-gps-status {
    border-radius: 8px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-gps-status {
    background: #e7f8ee;
    color: #137346;
    font-size: 12px;
    font-weight: 900;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-gps-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-body[data-route="customer/demo-link"] .axa-demo-safety-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
    border-color: #d8e2ef;
    padding: 12px;
    background: #ffffff;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-safety-icon {
    display: none;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-safety-card strong {
    color: #101b2e;
    font-size: 13px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-photo-progress {
    display: grid;
    gap: 7px;
    margin: 0;
    border: 0;
    padding: 0;
    background: transparent;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-photo-progress .axa-demo-photo-count {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    background: transparent;
    color: #5b6980;
    font-size: 11px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-photo-progress small {
    display: none;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-meter {
    height: 6px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-photo-step {
    display: grid;
    gap: 9px;
    margin-top: 0;
    border-radius: 8px;
    padding: 12px;
    box-shadow: none;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-photo-step[hidden] {
    display: none !important;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-photo-heading span {
    border-radius: 0;
    padding: 0;
    background: transparent;
    color: #6c788c;
    font-size: 10px;
    text-transform: uppercase;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-photo-step h2 {
    font-size: 16px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-photo-step p[data-axa-photo-slot-instruction] {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-photo-guidance-grid div {
    border: 0;
    border-radius: 7px;
    background: #e7f8ee;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-upload-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 0;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-upload-actions label,
.auth-body[data-route="customer/demo-link"] .axa-demo-upload-actions button {
    min-height: 42px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 900;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-photo-more {
    grid-column: 1 / -1;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-photo-more-actions {
    display: grid;
    gap: 8px;
    padding: 10px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-upload-actions .axa-demo-unavailable-action {
    border-color: #f3bf73;
    background: #fff4dd;
    color: #9a5d00;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-preview {
    min-height: 116px;
    margin-top: 0;
    border-style: dashed;
    border-radius: 8px;
    background: #ffffff;
    font-size: 12px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-photo-ai-feedback:not([data-state]),
.auth-body[data-route="customer/demo-link"] .axa-demo-photo-ai-feedback[data-state="idle"] {
    display: none;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-unavailable-panel {
    gap: 9px;
    border-radius: 8px;
    padding: 10px;
    background: #fffaf0;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-unavailable-slot {
    display: grid;
    gap: 5px;
    border: 1px solid #f3bf73;
    border-radius: 7px;
    padding: 10px;
    background: #fff4dd;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-unavailable-slot span {
    color: #9a5d00;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-unavailable-slot strong {
    color: #101b2e;
    font-size: 13px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-unavailable-slot small {
    color: #6c5200;
    font-size: 11px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-final-gallery-upload {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-body[data-route="customer/demo-link"] .axa-demo-final-gallery-grid,
.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.auth-body[data-route="customer/demo-link"] .axa-demo-final-gallery-empty,
.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-empty {
    min-height: 96px;
    border-radius: 8px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-package-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 12px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-package-summary div {
    display: grid;
    gap: 4px;
    border: 0;
    border-bottom: 1px solid #edf1f6;
    border-radius: 0;
    padding: 9px 0;
    background: transparent;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-package-summary div:last-child {
    border-bottom: 0;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-package-summary strong {
    color: #101b2e;
    font-size: 13px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-ready-pill {
    border-radius: 7px;
    padding: 10px 12px;
    background: #e7f8ee;
    color: #137346;
    font-size: 14px;
    font-weight: 900;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-gallery {
    display: grid;
    gap: 9px;
    margin-top: 0;
    border-radius: 8px;
    padding: 0;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-gallery > summary {
    margin: 0;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-gallery-head {
    display: grid;
    gap: 8px;
    padding: 0 10px 10px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-photo-ai-summary {
    padding: 10px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-done-card {
    display: grid;
    gap: 12px;
    background: #ffffff;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-done-card .axa-demo-estimate-prompt {
    margin: 12px 0 0;
    color: #101b2e;
    font-size: 13px;
    font-weight: 900;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-done-card .axa-demo-choice-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
    border: 0;
    padding: 0;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-done-meta {
    display: grid;
    gap: 0;
    border: 1px solid #d8e2ef;
    border-radius: 8px;
    padding: 8px 10px;
    background: #ffffff;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-done-meta div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    border-bottom: 1px solid #edf1f6;
    padding: 6px 0;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-done-meta div:last-child {
    border-bottom: 0;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-done-meta dt {
    color: #6c788c;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-done-meta dd {
    margin: 0;
    color: #101b2e;
    font-size: 12px;
    font-weight: 850;
    text-align: right;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-estimate-proposal {
    gap: 10px;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-estimate-proposal > p[data-axa-estimate-proposal-text] {
    border-color: #d8e2ef;
    border-radius: 8px;
    background: #ffffff;
    color: #101b2e;
    font-size: 13px;
    line-height: 1.45;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-estimate-sources {
    border-radius: 8px;
}

@media (max-width: 420px) {
    .auth-body[data-route="customer/demo-link"] .axa-demo-customer-shell,
    .auth-body[data-route="customer/demo-login"] .axa-demo-login,
    .auth-body[data-route="customer/demo-register"] .axa-demo-login {
        padding: 0;
    }

    .auth-body[data-route="customer/demo-link"] .axa-demo-customer-phone,
    .auth-body[data-route="customer/demo-login"] .axa-demo-login-grid,
    .auth-body[data-route="customer/demo-register"] .axa-demo-login-grid {
        width: 100%;
        border-radius: 0;
    }

    .auth-body[data-route="customer/demo-login"] .axa-demo-login-card,
    .auth-body[data-route="customer/demo-register"] .axa-demo-login-card {
        min-height: 100vh;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        box-shadow: none;
    }
}

@media (max-width: 420px) {
    .auth-body .axa-demo-login.is-customer-auth-flow {
        padding: 18px 10px;
    }

    .auth-body .axa-demo-login.is-customer-auth-flow .axa-demo-login-grid {
        width: min(100%, 360px);
        min-height: 0;
        border-radius: 8px;
    }

    .auth-body .axa-demo-login.is-customer-auth-flow .axa-demo-login-card {
        min-height: 0;
        border: 1px solid #cfdbea;
        border-radius: 8px;
        box-shadow: 0 12px 28px rgba(15, 31, 55, 0.10);
    }
}

@media (max-width: 600px) {
    .auth-body:is([data-route="customer/demo-link"], [data-route="collection/link"]) .axa-demo-ai-wait-modal {
        padding: 12px;
        overscroll-behavior: contain;
    }

    .auth-body:is([data-route="customer/demo-link"], [data-route="collection/link"]) .axa-demo-ai-wait-dialog {
        width: min(100%, 358px);
        max-height: calc(100% - 38px);
    }

    .auth-body:is([data-route="customer/demo-link"], [data-route="collection/link"]) .axa-demo-done-meta div {
        grid-template-columns: minmax(92px, 42%) minmax(0, 1fr);
        align-items: start;
    }

    .auth-body:is([data-route="customer/demo-link"], [data-route="collection/link"]) .axa-demo-done-meta dt,
    .auth-body:is([data-route="customer/demo-link"], [data-route="collection/link"]) .axa-demo-done-meta dd {
        min-width: 0;
    }

    .auth-body:is([data-route="customer/demo-link"], [data-route="collection/link"]) .axa-demo-done-meta dd {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .auth-body[data-route="customer/demo-link"] .axa-demo-customer-head a,
    .auth-body[data-route="customer/demo-link"] .axa-demo-consent strong,
    .auth-body[data-route="customer/demo-link"] .axa-demo-disclosure > summary,
    .auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-tabs button,
    .auth-body[data-route="customer/demo-link"] .axa-demo-file-picker-ui > span,
    .auth-body[data-route="customer/demo-link"] .axa-demo-wide-action,
    .auth-body[data-route="customer/demo-link"] .axa-demo-primary,
    .auth-body[data-route="customer/demo-link"] .axa-demo-secondary,
    .auth-body[data-route="customer/demo-link"] .axa-demo-primary-cta,
    .auth-body[data-route="customer/demo-link"] .axa-demo-upload-actions label,
    .auth-body[data-route="customer/demo-link"] .axa-demo-upload-actions button {
        font-size: 16px;
    }

    .auth-body[data-route="customer/demo-link"] .axa-demo-wide-action,
    .auth-body[data-route="customer/demo-link"] .axa-demo-primary,
    .auth-body[data-route="customer/demo-link"] .axa-demo-secondary,
    .auth-body[data-route="customer/demo-link"] .axa-demo-primary-cta,
    .auth-body[data-route="customer/demo-link"] .axa-demo-upload-actions label,
    .auth-body[data-route="customer/demo-link"] .axa-demo-upload-actions button {
        min-height: 48px;
    }

    .auth-body[data-route="customer/demo-link"] .axa-demo-field input,
    .auth-body[data-route="customer/demo-link"] .axa-demo-field select,
    .auth-body[data-route="customer/demo-link"] .axa-demo-field textarea,
    .auth-body[data-route="customer/demo-link"] .axa-demo-claim-summary-card dd,
    .auth-body[data-route="customer/demo-link"] .axa-demo-intro-details dd,
    .auth-body[data-route="customer/demo-link"] .axa-demo-privacy-detail-list strong,
    .auth-body[data-route="customer/demo-link"] .axa-demo-photo-guidance-grid strong,
    .auth-body[data-route="customer/demo-link"] .axa-demo-safety-card strong,
    .auth-body[data-route="customer/demo-link"] .axa-demo-unavailable-slot strong,
    .auth-body[data-route="customer/demo-link"] .axa-demo-package-summary strong {
        font-size: 16px;
        line-height: 1.4;
    }

    .auth-body[data-route="customer/demo-link"] .axa-demo-field span,
    .auth-body[data-route="customer/demo-link"] .axa-demo-unavailable-panel label span,
    .auth-body[data-route="customer/demo-link"] .axa-demo-field small,
    .auth-body[data-route="customer/demo-link"] .axa-demo-consent-panel p,
    .auth-body[data-route="customer/demo-link"] .axa-demo-final-gallery-head small,
    .auth-body[data-route="customer/demo-link"] [data-axa-document-hint],
    .auth-body[data-route="customer/demo-link"] .axa-demo-privacy-detail-list p,
    .auth-body[data-route="customer/demo-link"] .axa-demo-unavailable-slot small,
    .auth-body[data-route="customer/demo-link"] .axa-demo-done-meta dd,
    .auth-body[data-route="customer/demo-link"] .axa-demo-preview {
        font-size: 15px;
        line-height: 1.5;
    }

    .auth-body[data-route="customer/demo-link"] .axa-demo-screen[data-axa-step-label]::before,
    .auth-body[data-route="customer/demo-link"] .axa-demo-claim-summary-card > span,
    .auth-body[data-route="customer/demo-link"] .axa-demo-final-gallery-head span,
    .auth-body[data-route="customer/demo-link"] .axa-demo-package-summary span,
    .auth-body[data-route="customer/demo-link"] .axa-demo-denuncia-summary span,
    .auth-body[data-route="customer/demo-link"] .axa-demo-claim-summary-card dt,
    .auth-body[data-route="customer/demo-link"] .axa-demo-intro-details dt,
    .auth-body[data-route="customer/demo-link"] .axa-demo-photo-heading span,
    .auth-body[data-route="customer/demo-link"] .axa-demo-photo-guidance-grid span,
    .auth-body[data-route="customer/demo-link"] .axa-demo-unavailable-slot span,
    .auth-body[data-route="customer/demo-link"] .axa-demo-done-meta dt {
        font-size: 13px;
        line-height: 1.35;
    }

    .auth-body[data-route="customer/demo-link"] .axa-demo-claim-summary-card > strong {
        font-size: 18px;
    }

    .auth-body[data-route="customer/demo-link"] .axa-demo-photo-step h2 {
        font-size: 20px;
    }

    .auth-body[data-route="customer/demo-link"] .axa-demo-photo-progress .axa-demo-photo-count {
        font-size: 14px;
    }

    .auth-body:is([data-route="customer/demo-link"], [data-route="collection/link"]) .axa-demo-customer-phone :where(
        p,
        li,
        label,
        button,
        input,
        select,
        textarea,
        summary,
        dt,
        dd,
        em,
        small,
        strong,
        a,
        span,
        div
    ),
    .auth-body .axa-demo-login.is-customer-auth-flow :where(
        p,
        li,
        label,
        button,
        input,
        select,
        textarea,
        summary,
        dt,
        dd,
        em,
        small,
        strong,
        a,
        span,
        div
    ),
    .auth-body .axa-demo-welcome-panel :where(
        p,
        li,
        label,
        button,
        input,
        select,
        textarea,
        summary,
        dt,
        dd,
        em,
        small,
        strong,
        a,
        span,
        div
    ) {
        font-size: max(16px, 1em) !important;
    }

    .auth-body:is([data-route="customer/demo-link"], [data-route="collection/link"]) .axa-demo-customer-phone :where(
        p,
        li,
        label,
        dt,
        dd,
        small
    ),
    .auth-body .axa-demo-login.is-customer-auth-flow :where(
        p,
        li,
        label,
        dt,
        dd,
        small
    ),
    .auth-body .axa-demo-welcome-panel :where(
        p,
        li,
        label,
        dt,
        dd,
        small
    ) {
        line-height: 1.5;
    }

    .auth-body:is([data-route="customer/demo-link"], [data-route="collection/link"]) .axa-demo-screen[data-axa-step-label]::before {
        font-size: 16px !important;
        line-height: 1.2;
        white-space: nowrap;
    }
}

.axa-demo-denuncia-processing:not([hidden]) .axa-demo-processing-icon i,
.axa-demo-denuncia-processing.is-active .axa-demo-processing-icon i {
    animation: axa-demo-processing-bar 780ms ease-in-out infinite !important;
    animation-play-state: running !important;
}

.axa-demo-ai-wait-modal[data-state="waiting"] .axa-demo-ai-wait-icon::before,
.axa-demo-ai-wait-modal[data-state="estimate-waiting"] .axa-demo-ai-wait-icon::before,
.axa-demo-ai-wait-modal[data-state="sending"] .axa-demo-ai-wait-icon::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 51, 153, 0.24);
    border-top-color: var(--axa-blue);
    border-radius: 999px;
    animation: axa-demo-spin 800ms linear infinite !important;
    animation-play-state: running !important;
}

.axa-demo-ai-wait-modal[data-state="success"] .axa-demo-ai-wait-icon::before,
.axa-demo-photo-ai-summary[data-state="ready"] .axa-demo-work-indicator i,
.axa-demo-ai-wait-modal[data-state="success"] .axa-demo-work-indicator i {
    animation: none !important;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    overflow: hidden;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-tile,
.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-thumb,
.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-thumb > *,
.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-name {
    min-width: 0;
    max-width: 100%;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-thumb {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 0.78;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-thumb img,
.auth-body[data-route="customer/demo-link"] .axa-demo-review-photo-thumb .axa-demo-preview-visual,
.auth-body[data-route="customer/demo-link"] .axa-demo-review-modal-card img {
    display: block;
}

.auth-body[data-route="customer/demo-link"] .axa-demo-review-gallery-head {
    grid-template-columns: minmax(0, 1fr);
}

/* Keep the isolated demo operator entry comfortably readable on phones. */
@media (max-width: 600px) {
    .auth-body[data-route="admin/axa-demo-login"] .axa-demo-login-kicker,
    .auth-body[data-route="admin/axa-demo-login"] .axa-demo-login-card p,
    .auth-body[data-route="admin/axa-demo-login"] .axa-demo-login-field,
    .auth-body[data-route="admin/axa-demo-login"] .axa-demo-login-field input,
    .auth-body[data-route="admin/axa-demo-login"] .axa-demo-login-error,
    .auth-body[data-route="admin/axa-demo-login"] .axa-demo-login-notice,
    .auth-body[data-route="admin/axa-demo-login"] .axa-demo-login-meta {
        font-size: 16px;
    }

    .auth-body[data-route="admin/axa-demo-login"] .axa-demo-login-card p,
    .auth-body[data-route="admin/axa-demo-login"] .axa-demo-login-error,
    .auth-body[data-route="admin/axa-demo-login"] .axa-demo-login-notice,
    .auth-body[data-route="admin/axa-demo-login"] .axa-demo-login-meta {
        line-height: 1.5;
    }
}

@media (prefers-reduced-motion: reduce) {
    .flash-stack-overlay,
    .flash-stack-overlay.is-leaving {
        animation-duration: 1ms;
    }

    .axa-control-learning-activity::after {
        animation: none;
    }

    .axa-control-learning-core {
        animation-duration: 1.4s !important;
        animation-iteration-count: infinite !important;
    }

    .axa-control-learning-core::before {
        animation-duration: 1.1s !important;
        animation-iteration-count: infinite !important;
    }

    .axa-control-learning-core::after {
        animation-duration: 0.8s !important;
        animation-iteration-count: infinite !important;
    }

    .axa-demo-denuncia-processing:not([hidden]) .axa-demo-processing-icon i,
    .axa-demo-denuncia-processing.is-active .axa-demo-processing-icon i {
        animation-duration: 780ms !important;
        animation-iteration-count: infinite !important;
    }

    .axa-demo-ai-wait-modal[data-state="waiting"] .axa-demo-ai-wait-icon::before,
    .axa-demo-ai-wait-modal[data-state="estimate-waiting"] .axa-demo-ai-wait-icon::before,
    .axa-demo-ai-wait-modal[data-state="sending"] .axa-demo-ai-wait-icon::before {
        animation-duration: 800ms !important;
        animation-iteration-count: infinite !important;
    }
}
