/* ============================================================
   AtlasFE Web — Global Styles
   Brand palette: Deep Blue #1565C0 · Sky #0288D1 · Teal #14B8A6
   ============================================================ */

/* ── Base ─────────────────────────────────────────────────── */
html, body {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    /* Block body/page scroll — only MudMainContent scrolls */
    overflow: hidden;
}

/* Blazor app root must fill the viewport */
#app {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ── Layout: viewport-locked, single scroll zone ─────────── */
/* MudLayout fills height set by #app */
.mud-layout {
    height: 100% !important;
    min-height: unset !important;
}

/* MudBlazor sets padding-top (AppBar height) and padding-left (drawer width)
   as inline styles on .mud-main-content.
   Declaring height:100vh + box-sizing:border-box makes padding count INSIDE
   the declared height, so the content area = 100vh minus those paddings.
   display:flex + flex-direction:column lets children fill remaining height. */
.mud-main-content {
    height: 100vh !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;    /* fallback scroll for content-heavy pages */
    overflow-x: hidden !important;
    min-height: unset !important;
    display: flex !important;
    flex-direction: column !important;
}

/* ── Fill-height table layout ────────────────────────────── */

/* Flex item that fills all remaining space as a column.
   Apply to MudTabs, MudContainer, MudPaper wrapping a table, etc. */
.flex-col-fill {
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* MudTabs with flex-col-fill: tabbar keeps its height, panels fill rest */
.mud-tabs.flex-col-fill .mud-tabs-panels {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.mud-tabs.flex-col-fill .mud-tab-panel {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* MudTable inside a flex-col-fill container:
   - table root fills remaining flex space
   - rows container scrolls (MudBlazor adds overflow-y:auto when FixedHeader=true)
   - pagination stays at bottom, never clipped */
.flex-col-fill .mud-table {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.flex-col-fill .mud-table .mud-table-container {
    flex: 1;
    min-height: 0;
}
.flex-col-fill .mud-table .mud-table-pagination {
    flex-shrink: 0;
}

/* ── Responsive: Tables ──────────────────────────────────── */
/* MudTable renders a div.mud-table-container — allow h-scroll on mobile */
.mud-table-container {
    overflow-x: auto;
    max-width: 100%;
}

/* Compact table cells on xs screens */
@media (max-width: 599px) {
    .mud-table-root .mud-table-cell {
        padding: 6px 8px !important;
        font-size: 0.75rem !important;
    }

    .mud-chip {
        font-size: 0.7rem !important;
        height: 20px !important;
    }
}

/* ── Responsive: Containers & Spacing ───────────────────── */
@media (max-width: 599px) {
    /* Shrink default MudContainer side padding on phones */
    .mud-container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    /* Reduce large paper padding to give content more room */
    .mud-paper.pa-4 {
        padding: 12px !important;
    }

    /* Tighten top margin for page containers */
    .mud-container.mt-4 {
        margin-top: 8px !important;
    }

    /* MudTabs: remove extra panel padding set via PanelClass */
    .mud-tab-panel {
        padding: 0 !important;
    }
}

@media (max-width: 959px) {
    /* On tablet/phone, give the main content area narrower side padding
       (the layout uses px-4 / px-3 via Class, this corrects it) */
    .mud-main-content {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}

h1:focus { outline: none; }

/* ── Auth Layout: split-screen ─────────────────────────────── */
.auth-bg {
    min-height: 100vh;
    background: linear-gradient(150deg, #071428 0%, #0D3A7A 40%, #1565C0 75%, #1E88E5 100%);
}

/* Full-width split layout */
.auth-split-layout {
    display: flex;
    min-height: 100vh;
    width: 100vw;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 32px 80px rgba(7,20,40,0.5);
}

/* Left brand panel */
.auth-brand-panel {
    flex: 1;
    background: linear-gradient(165deg, #071428 0%, #0D3A7A 50%, #1565C0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.auth-brand-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.auth-brand-panel::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30,136,229,0.25) 0%, transparent 70%);
}

.auth-brand-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 400px;
}

.auth-brand-logo {
    width: 220px;
    height: auto;
    border-radius: 16px;
    background: rgba(255,255,255,0.12);
    padding: 16px 20px;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
    backdrop-filter: blur(4px);
}

.auth-brand-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

/* Right form panel */
.auth-form-panel {
    flex: 0 0 440px;
    background: var(--mud-palette-surface, #FFFFFF);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
    overflow-y: auto;
}

.auth-form-inner {
    width: 100%;
    max-width: 380px;
}

/* Responsive: single column on mobile */
@media (max-width: 899px) {
    .auth-split-layout {
        flex-direction: column;
    }
    .auth-form-panel {
        flex: 1;
        padding: 32px 24px;
    }
    .auth-brand-panel {
        min-height: 180px;
        padding: 28px 24px;
    }
    .auth-brand-logo {
        width: 140px;
    }
}

.auth-form-logo {
    height: 56px;
    width: auto;
}

.auth-submit-btn {
    border-radius: 10px !important;
    height: 48px;
    font-size: 1rem !important;
    box-shadow: 0 4px 14px rgba(21,101,192,0.35) !important;
    transition: box-shadow 0.2s ease, transform 0.15s ease !important;
}

.auth-submit-btn:hover:not([disabled]) {
    box-shadow: 0 6px 20px rgba(21,101,192,0.5) !important;
    transform: translateY(-1px);
}

.auth-google-btn {
    border-radius: 10px !important;
    height: 48px;
    transition: background 0.2s ease !important;
}

.apple-signin-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    height: 48px;
    border: 1px solid #333333;
    border-radius: 10px;
    background: #000000;
    color: #FFFFFF !important;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.apple-signin-btn:hover {
    background: #000000;
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.24);
    transform: translateY(-1px);
}

.apple-signin-btn:focus-visible {
    outline: 3px solid rgba(21,101,192,0.4);
    outline-offset: 2px;
}

.apple-signin-logo {
    position: absolute;
    left: 8px;
    width: 31px;
    height: 44px;
    display: block;
}

/* ── Auth screens aligned with the public AtlasFE experience ── */
.auth-bg {
    --landing-navy: #071428;
    --landing-ink: #0d2244;
    --landing-blue: #1565c0;
    --landing-sky: #1e88e5;
    --landing-teal: #14b8a6;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 32px;
    overflow-x: hidden;
    overflow-y: auto;
    background: linear-gradient(116deg, #f5faff 0%, #ffffff 52%, #eef8ff 100%);
}

.auth-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .55;
    background-image: linear-gradient(rgba(21,101,192,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(21,101,192,.045) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(135deg, #000 0%, transparent 78%);
    pointer-events: none;
}

.auth-bg::after {
    content: '';
    position: absolute;
    width: 530px;
    height: 530px;
    right: -180px;
    top: -170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30,136,229,.13), transparent 68%);
    pointer-events: none;
}

.auth-bg > .mud-container {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 0 !important;
}

.auth-split-layout {
    width: min(1120px, 100%);
    min-height: 680px;
    min-width: 0;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(211,228,241,.9);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(13,66,116,.16), 0 5px 18px rgba(13,66,116,.06);
}

.auth-brand-panel {
    flex: 1 1 0;
    min-width: 0;
    padding: 64px 62px;
    background: linear-gradient(145deg, #071428 0%, #0b2c57 54%, #115da6 100%);
}

.auth-brand-panel::before {
    opacity: .75;
    background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(135deg, #000, transparent 84%);
}

.auth-brand-panel::after {
    bottom: -170px;
    right: -130px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(20,184,166,.2), transparent 68%);
}

.auth-brand-content {
    width: 100%;
    max-width: 455px;
    text-align: left;
}

.auth-brand-lockup,
.auth-mobile-lockup {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.24rem;
    font-weight: 800;
    letter-spacing: -.055em;
    text-decoration: none;
}

.auth-brand-lockup > span span,
.auth-mobile-lockup > span span {
    color: #61cbe8;
}

.auth-brand-logo {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 0;
    background: none;
    filter: drop-shadow(0 5px 13px rgba(0,0,0,.23));
}

.auth-brand-kicker,
.auth-form-kicker {
    color: #69d6ca;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.auth-brand-kicker { margin-top: 78px; }

.auth-brand-content h1 {
    margin: 14px 0 17px;
    color: #fff;
    font-size: clamp(2.25rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -.065em;
}

.auth-brand-content h1 span { color: #61cbe8; }
.auth-brand-content > p { max-width: 410px; margin: 0; color: #b8d0e5; font-size: .92rem; line-height: 1.7; }

.auth-brand-points {
    display: grid;
    gap: 11px;
    margin-top: 28px;
}

.auth-brand-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d9edf5;
    font-size: .72rem;
    font-weight: 700;
}

.auth-brand-points .mud-icon-root { color: #69d6ca; font-size: 17px; }

.auth-mini-flow {
    display: flex;
    align-items: center;
    gap: 13px;
    width: fit-content;
    margin-top: 34px;
    padding: 12px 15px;
    border: 1px solid rgba(153,211,231,.2);
    border-radius: 11px;
    background: rgba(255,255,255,.07);
}

.auth-mini-flow > div { display: flex; align-items: center; gap: 7px; color: #e5f5f8; }
.auth-mini-flow small { font-size: .62rem; font-weight: 800; }
.auth-mini-flow-icon { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 7px; color: #79c5f5; background: rgba(30,136,229,.2); }
.auth-mini-flow-icon-teal { color: #69d6ca; background: rgba(20,184,166,.18); }
.auth-mini-flow-line { position: relative; width: 38px; height: 1px; background: rgba(105,214,202,.55); }
.auth-mini-flow-line::after { content: ''; position: absolute; right: -1px; top: -3px; border-top: 4px solid transparent; border-bottom: 4px solid transparent; border-left: 5px solid #69d6ca; }

.auth-form-panel {
    position: relative;
    flex: 0 0 470px;
    min-width: 0;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 30px 54px 48px;
    background: #fff;
}

.auth-form-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 390px;
    margin-bottom: 48px;
}

.auth-form-topbar > span { color: #9aacc0; font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.auth-back-link { display: inline-flex; align-items: center; gap: 6px; color: #6d829a; font-size: .68rem; font-weight: 700; text-decoration: none; }.auth-back-link:hover { color: var(--landing-blue); }.auth-back-link .mud-icon-root { font-size: 15px; }

.auth-form-inner { width: 100%; max-width: 390px; min-width: 0; }
.auth-form-heading { margin-bottom: 30px; text-align: left; }
.auth-mobile-lockup { display: none; color: var(--landing-ink); }
.auth-form-logo { width: 34px; height: 34px; object-fit: contain; }
.auth-form-kicker { margin-bottom: 10px; color: var(--landing-blue); font-size: .62rem; }
.auth-form-heading h2 { margin: 0 0 8px; color: var(--landing-navy); font-size: clamp(1.85rem, 3vw, 2.35rem); font-weight: 800; letter-spacing: -.055em; }
.auth-form-heading p { margin: 0; color: #71869e; font-size: .83rem; line-height: 1.6; }

.auth-form-panel .mud-input-control { margin-bottom: 4px; }
.auth-form-panel .mud-input-outlined-border { border-color: #d7e4ef; border-radius: 10px; }
.auth-form-panel .mud-input-control:hover .mud-input-outlined-border { border-color: #9fc4e2; }
.auth-form-panel .mud-input-control.mud-input-control-focused .mud-input-outlined-border { border-color: var(--landing-blue); border-width: 1px; box-shadow: 0 0 0 3px rgba(21,101,192,.08); }
.auth-form-panel .mud-input-label { color: #7087a0; font-size: .78rem; }
.auth-form-panel .mud-input { color: var(--landing-ink); font-size: .84rem; }
.auth-form-panel .mud-input-adornment .mud-icon-root { color: #8aa8c0; font-size: 18px; }
.auth-form-panel .mud-checkbox { color: #71869e; }
.auth-form-panel .mud-checkbox .mud-typography { font-size: .72rem; }
.auth-divider-row { width: 100%; min-width: 0; overflow: hidden; }
.auth-divider-row .mud-divider { flex: 1 1 0; width: auto; min-width: 0; }
.auth-divider-row .mud-typography { flex: 0 0 auto; margin-right: 12px !important; margin-left: 12px !important; }

.auth-submit-btn { min-height: 48px; border-radius: 9px !important; background: var(--landing-blue) !important; box-shadow: 0 10px 24px rgba(21,101,192,.25) !important; }
.auth-submit-btn:hover:not([disabled]) { background: #0d57ad !important; box-shadow: 0 12px 26px rgba(21,101,192,.3) !important; }
.auth-google-btn { border-color: #d5e3ee !important; color: var(--landing-ink) !important; background: #fff !important; }
.auth-google-btn:hover { border-color: #a9c7e4 !important; background: #f7fbff !important; }
.auth-apple-btn { min-height: 48px; border-radius: 9px !important; color: #fff !important; background: var(--landing-navy) !important; box-shadow: 0 8px 18px rgba(7,20,40,.14) !important; }
.auth-apple-btn:hover { background: #0d2a50 !important; }
.auth-form-panel .mud-divider { background-color: #e2ebf3; }
.auth-form-panel .mud-alert { border-radius: 9px; font-size: .75rem; }
.auth-form-panel .mud-link { color: var(--landing-blue); }

@media (max-width: 959px) {
    .auth-bg { align-items: flex-start; padding: 0; }
    .auth-bg > .mud-container { padding: 0 !important; }
    .auth-split-layout { min-height: 100vh; border: 0; border-radius: 0; box-shadow: none; }
    .auth-form-panel { flex: 1 1 auto; min-height: 100vh; padding: 24px 22px 40px; }
    .auth-form-topbar { margin-bottom: 55px; }
    .auth-mobile-lockup { display: inline-flex; margin-bottom: 30px; }
    .auth-form-heading { margin-bottom: 26px; }
}

@media (max-width: 480px) {
    .auth-form-panel { padding: 19px 16px 32px; }
    .auth-form-topbar { margin-bottom: 43px; }
    .auth-form-topbar > span { display: none; }
    .auth-form-heading h2 { font-size: 1.9rem; }
    .auth-submit-btn, .auth-google-btn, .apple-signin-btn { min-height: 46px; height: 46px; }
}

/* ── AppBar Branding ─────────────────────────────────────── */
.appbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.appbar-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.appbar-product-name {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--mud-palette-primary);
    line-height: 1;
}

/* ── Sidebar / NavMenu Branding ──────────────────────────── */
.nav-menu-custom {
    height: 100%;
}

.nav-logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px 12px;
    overflow: hidden;
    transition: padding 0.2s ease;
}

/* When drawer is in mini (collapsed) mode, hide the text */
.mud-drawer--mini:not(.mud-drawer-open) .nav-logo-section {
    padding: 14px 10px 12px;
    justify-content: center;
}

.mud-drawer--mini:not(.mud-drawer-open) .nav-logo-text {
    display: none;
}

.nav-logo-icon {
    height: 32px;
    width: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-logo-text {
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.1px;
    color: var(--mud-palette-drawer-text, #1A3560);
    white-space: nowrap;
    overflow: hidden;
}

.nav-logo-text strong {
    font-weight: 800;
    color: var(--mud-palette-primary);
}

/* ── Card Refinements ───────────────────────────────────── */
.mud-paper {
    transition: box-shadow 0.2s ease !important;
}

.mud-paper:hover {
    box-shadow: 0 4px 20px rgba(21,101,192,0.10) !important;
}

/* Stat cards */
.mud-paper.rounded-lg {
    border-radius: 12px !important;
}

/* ── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(21,101,192,0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(21,101,192,0.5); }

/* ── Transitions ────────────────────────────────────────── */
.mud-nav-link { transition: background 0.15s ease, color 0.15s ease !important; }
.mud-button { transition: box-shadow 0.2s ease, transform 0.15s ease !important; }

/* ── Public landing page ─────────────────────────────────── */
.public-layout {
    height: 100%;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

.landing-page {
    --landing-navy: #071428;
    --landing-ink: #0d2244;
    --landing-blue: #1565c0;
    --landing-sky: #1e88e5;
    --landing-teal: #14b8a6;
    --landing-line: #d9e7f4;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    background: #fff;
    color: var(--landing-ink);
}

.landing-container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.landing-nav-shell { position: absolute; z-index: 5; inset: 0 0 auto; }
.landing-nav { width: min(1160px, calc(100% - 48px)); height: 82px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.landing-brand { display: inline-flex; align-items: center; gap: 10px; color: var(--landing-ink); font-size: 1.18rem; font-weight: 800; letter-spacing: -0.05em; text-decoration: none; white-space: nowrap; }
.landing-brand span span { color: var(--landing-sky); }
.landing-brand-mark { width: 34px; height: 34px; object-fit: contain; }
.landing-nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.landing-nav-links a, .landing-login-link { color: #526987; font-size: .86rem; font-weight: 600; text-decoration: none; transition: color .2s ease; }
.landing-nav-links a:hover, .landing-login-link:hover { color: var(--landing-blue); }
.landing-nav-actions { display: flex; align-items: center; gap: 22px; }
.landing-button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 21px; border-radius: 9px; font-size: .86rem; font-weight: 700; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.landing-button:hover { transform: translateY(-2px); }
.landing-button-small { min-height: 40px; padding: 0 17px; background: var(--landing-blue); color: #fff; box-shadow: 0 8px 18px rgba(21,101,192,.2); }
.landing-button-small:hover, .landing-button-primary:hover { color: #fff; background: #0d57ad; box-shadow: 0 12px 24px rgba(21,101,192,.28); }
.landing-button-primary { background: var(--landing-blue); color: #fff; box-shadow: 0 10px 24px rgba(21,101,192,.25); }
.landing-button-ghost { color: var(--landing-ink); border: 1px solid #ceddeb; background: rgba(255,255,255,.68); }
.landing-button-ghost:hover { color: var(--landing-blue); background: #fff; border-color: #a9c7e4; }

.landing-hero { position: relative; min-height: 690px; padding: 158px 0 86px; overflow: hidden; background: linear-gradient(116deg, #f5faff 0%, #fff 52%, #eef8ff 100%); }
.landing-hero::before { content: ''; position: absolute; inset: 0; opacity: .42; background-image: linear-gradient(rgba(21,101,192,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(21,101,192,.045) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg, #000 0%, transparent 75%); }
.landing-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.landing-orb-one { width: 430px; height: 430px; right: -120px; top: 65px; background: radial-gradient(circle, rgba(30,136,229,.13), transparent 68%); }
.landing-orb-two { width: 300px; height: 300px; left: 30%; bottom: -190px; background: radial-gradient(circle, rgba(20,184,166,.12), transparent 68%); }
.landing-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 45px; }
.landing-hero-copy { padding-bottom: 25px; }
.landing-eyebrow, .landing-section-kicker { color: var(--landing-blue); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.landing-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border: 1px solid #cce0f4; border-radius: 20px; background: rgba(255,255,255,.72); }
.landing-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--landing-teal); box-shadow: 0 0 0 4px rgba(20,184,166,.12); }
.landing-hero h1 { max-width: 610px; margin: 21px 0 18px; color: var(--landing-navy); font-size: clamp(2.7rem, 5vw, 4.4rem); font-weight: 800; line-height: 1.03; letter-spacing: -.065em; }
.landing-hero h1 span, .landing-integration-copy h2 span, .landing-final-cta h2 span { color: var(--landing-sky); }
.landing-hero-lead { max-width: 530px; margin: 0; color: #58708d; font-size: 1.06rem; line-height: 1.72; }
.landing-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.landing-hero-note { display: flex; align-items: center; gap: 7px; margin-top: 20px; color: #6d829a; font-size: .76rem; font-weight: 600; }
.landing-hero-note .mud-icon-root { color: var(--landing-teal); }

.landing-hero-visual { position: relative; min-height: 415px; padding: 42px 0 20px 24px; }
.landing-glow-card { position: relative; z-index: 1; max-width: 510px; margin: auto; padding: 22px; border: 1px solid rgba(255,255,255,.9); border-radius: 20px; background: rgba(255,255,255,.8); box-shadow: 0 24px 65px rgba(22,83,143,.16), 0 5px 18px rgba(22,83,143,.08); backdrop-filter: blur(18px); }
.landing-glow-card::before { content: ''; position: absolute; z-index: -1; inset: 16px -20px -20px 35px; border-radius: 25px; background: linear-gradient(130deg, rgba(30,136,229,.18), rgba(20,184,166,.1)); filter: blur(20px); }
.landing-connection-topline, .landing-demo-header { display: flex; align-items: center; justify-content: space-between; }
.landing-live-pill { display: inline-flex; align-items: center; gap: 6px; color: #118d7f; font-size: .62rem; font-weight: 800; letter-spacing: .11em; }
.landing-live-pill span, .landing-demo-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--landing-teal); box-shadow: 0 0 0 4px rgba(20,184,166,.13); }
.landing-connection-time { color: #8a9db3; font-size: .65rem; font-weight: 600; }
.landing-connection-canvas { display: flex; align-items: center; gap: 12px; margin: 30px 0 25px; }
.landing-system-card { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; padding: 14px 11px; border: 1px solid #e2edf6; border-radius: 12px; background: #fff; box-shadow: 0 7px 20px rgba(14,62,109,.06); }
.landing-system-card strong, .landing-status-check + div strong { display: block; color: var(--landing-ink); font-size: .78rem; font-weight: 800; }
.landing-system-card small, .landing-status-check + div small { display: block; margin-top: 3px; color: #8a9db3; font-size: .59rem; white-space: nowrap; }
.landing-system-icon { display: grid; flex: 0 0 34px; width: 34px; height: 34px; place-items: center; border-radius: 9px; }
.landing-system-icon .mud-icon-root { font-size: 19px; }
.landing-system-icon-blue { color: var(--landing-blue); background: #e8f2fd; }
.landing-system-icon-teal { color: #0f9b8c; background: #e6faf7; }
.landing-system-check { margin-left: auto; color: var(--landing-teal); font-size: 16px !important; }
.landing-connection-line { position: relative; flex: 0 0 42px; height: 2px; background: #b9dfdb; }
.landing-connection-line::after { content: ''; position: absolute; right: -1px; top: -4px; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 6px solid #8bcfc7; }
.landing-connection-pulse { position: absolute; top: -3px; left: 20%; width: 8px; height: 8px; border-radius: 50%; background: var(--landing-teal); animation: landing-pulse 2.2s infinite ease-in-out; }
@keyframes landing-pulse { 0%, 100% { transform: translateX(0); opacity: .35; } 50% { transform: translateX(28px); opacity: 1; } }
.landing-connection-status { display: flex; align-items: center; gap: 10px; padding: 13px 12px; border: 1px solid #cdeee9; border-radius: 11px; background: #f4fffd; }
.landing-status-check { display: grid; flex: 0 0 26px; width: 26px; height: 26px; place-items: center; border-radius: 50%; color: #fff; background: var(--landing-teal); }
.landing-status-check .mud-icon-root { font-size: 16px; }
.landing-status-bolt { margin-left: auto; color: #f2ae2f; }
.landing-float-card { position: absolute; z-index: 2; display: flex; align-items: center; gap: 9px; padding: 11px 13px; border: 1px solid rgba(221,235,246,.9); border-radius: 11px; background: rgba(255,255,255,.92); box-shadow: 0 12px 25px rgba(22,83,143,.12); }
.landing-float-card strong, .landing-float-card small { display: block; }
.landing-float-card strong { color: var(--landing-ink); font-size: .72rem; }
.landing-float-card small { margin-top: 2px; color: #91a2b6; font-size: .58rem; }
.landing-float-approved { left: 0; bottom: 52px; animation: landing-float 4s ease-in-out infinite; }
.landing-float-approved > span { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; color: #fff; background: var(--landing-teal); }
.landing-float-volume { right: -3px; top: 15px; animation: landing-float 4.5s .5s ease-in-out infinite; }
.landing-float-volume > .mud-icon-root { color: var(--landing-blue); }
.landing-float-volume em { margin-left: 4px; color: var(--landing-teal); font-size: .58rem; font-style: normal; }
@keyframes landing-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.landing-trust-bar { border-top: 1px solid #e4edf5; border-bottom: 1px solid #e4edf5; background: #fff; }
.landing-trust-items { display: flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 76px; }
.landing-trust-items > span { display: inline-flex; align-items: center; gap: 7px; color: #66809f; font-size: .7rem; font-weight: 700; white-space: nowrap; }
.landing-trust-items .mud-icon-root { color: var(--landing-blue); font-size: 17px; }
.landing-trust-label { color: var(--landing-ink) !important; font-size: .74rem !important; }

/* ── Floating electronic invoicing deadline countdown ───── */
.landing-deadline-section { position: fixed; z-index: 20; right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); width: min(470px, calc(100vw - 36px)); max-height: calc(100vh - 36px); padding: 0; pointer-events: none; }
.landing-deadline-section .landing-container { width: 100%; min-width: 0; margin: 0; }
.landing-deadline-card { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); align-items: center; gap: 18px; width: 100%; max-height: min(280px, calc(100vh - 36px)); box-sizing: border-box; padding: 16px 18px; overflow-x: hidden; overflow-y: auto; border: 1px solid #f3dfad; border-radius: 14px; background: linear-gradient(110deg, rgba(255,253,247,.97), rgba(255,248,230,.97)); box-shadow: 0 14px 34px rgba(89,63,16,.17), 0 3px 9px rgba(89,63,16,.08); backdrop-filter: blur(12px); pointer-events: auto; }
.landing-deadline-copy, .landing-countdown-panel, .landing-countdown-grid, .landing-countdown-grid div { min-width: 0; }
.landing-deadline-topline { display: flex; grid-column: 1 / -1; align-items: center; justify-content: space-between; gap: 10px; min-width: 0; }
.landing-deadline-kicker { display: flex; flex: 1 1 auto; min-width: 0; align-items: center; gap: 8px; overflow: hidden; color: #533913; font-size: .95rem; font-weight: 800; letter-spacing: -.025em; }
.landing-deadline-kicker strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.landing-deadline-context { flex: 0 0 auto; margin-left: auto; color: #9a6713; font-size: .56rem; font-weight: 800; letter-spacing: .08em; text-align: right; text-transform: uppercase; white-space: nowrap; }
.landing-warning-mark { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 8px; color: #fff; background: #e5a62c; box-shadow: 0 0 0 0 rgba(229,166,44,.28); animation: landing-warning-pulse 2.2s ease-in-out infinite; }
.landing-warning-mark .mud-icon-root { font-size: 17px; }
.landing-deadline-date { display: flex; align-items: center; gap: 5px; color: #8f5d0b; font-size: .7rem; font-weight: 800; }.landing-deadline-date .mud-icon-root { color: #d69a22; font-size: 15px; }
.landing-deadline-copy p { max-width: 670px; margin: 0; color: #806a45; font-size: .78rem; line-height: 1.6; }.landing-deadline-copy p strong { color: #8f5d0b; }
.landing-deadline-link { display: inline-flex; align-items: center; gap: 5px; max-width: 100%; margin-top: 7px; color: #9a6713; font-size: .63rem; font-weight: 800; text-decoration: none; white-space: normal; }.landing-deadline-link:hover { color: #6f4808; }.landing-deadline-link .mud-icon-root { flex: 0 0 auto; font-size: 13px; }
.landing-countdown-panel { box-sizing: border-box; padding: 13px 13px 10px; border: 1px solid rgba(241,207,133,.8); border-radius: 11px; background: rgba(255,255,255,.72); }.landing-countdown-label { display: flex; align-items: center; justify-content: space-between; color: #987544; font-size: .55rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }.landing-countdown-label .mud-icon-root { color: #d69a22; }
.landing-countdown-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 5px; margin-top: 10px; }.landing-countdown-grid div { box-sizing: border-box; min-width: 0; padding: 8px 1px 7px; border: 1px solid #f1dfb4; border-radius: 7px; text-align: center; background: #fffdf8; }.landing-countdown-grid strong, .landing-countdown-grid span { display: block; }.landing-countdown-grid strong { overflow: visible; color: #604311; font-size: clamp(.85rem, 1.8vw, 1.15rem); font-variant-numeric: tabular-nums; letter-spacing: -.08em; line-height: 1; white-space: nowrap; }.landing-countdown-grid span { margin-top: 4px; color: #ae8750; font-size: .4rem; font-weight: 800; letter-spacing: .08em; }.landing-countdown-footer { display: flex; align-items: center; gap: 5px; margin-top: 9px; color: #9a8055; font-size: .52rem; }.landing-countdown-footer .mud-icon-root { color: var(--landing-teal); font-size: 14px; }
.landing-countdown-expired { display: grid; gap: 4px; color: #9b4b34; }.landing-countdown-expired .mud-icon-root { color: #d77832; }.landing-countdown-expired strong { font-size: .72rem; }.landing-countdown-expired span { color: #9b786d; font-size: .55rem; }
@keyframes landing-warning-pulse { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229,166,44,.25); } 45% { transform: scale(1.06); box-shadow: 0 0 0 6px rgba(229,166,44,0); } 52% { transform: scale(.98); } }

.landing-section { padding: 112px 0; }
.landing-section-light { background: #f8fbfe; }
.landing-section-heading { max-width: 650px; }
.landing-section-heading h2, .landing-process-heading h2, .landing-integration-copy h2, .landing-final-cta h2 { margin: 12px 0 14px; color: var(--landing-navy); font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 800; line-height: 1.1; letter-spacing: -.055em; }
.landing-section-heading p, .landing-process-heading p { max-width: 570px; margin: 0; color: #68809c; font-size: .95rem; line-height: 1.7; }
.landing-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 45px; }
.landing-feature-card { min-height: 205px; padding: 26px; border: 1px solid #e1ebf4; border-radius: 14px; background: #fff; box-shadow: 0 7px 22px rgba(13,66,116,.035); transition: transform .2s ease, box-shadow .2s ease; }
.landing-feature-card:hover { transform: translateY(-4px); box-shadow: 0 15px 30px rgba(13,66,116,.1); }
.landing-feature-card-featured { grid-row: span 2; min-height: 0; background: linear-gradient(146deg, #0b2c57, #115da6); border-color: #115da6; box-shadow: 0 18px 32px rgba(9,58,112,.18); }
.landing-feature-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 11px; color: #fff; background: var(--landing-blue); }
.landing-feature-icon .mud-icon-root { font-size: 22px; }
.landing-icon-teal { background: #16aa98; }.landing-icon-orange { background: #e99428; }.landing-icon-purple { background: #7564d6; }.landing-icon-blue { background: #358ed8; }.landing-icon-green { background: #4aa870; }
.landing-feature-card h3 { margin: 20px 0 8px; color: var(--landing-ink); font-size: 1.02rem; font-weight: 800; letter-spacing: -.02em; }
.landing-feature-card p { margin: 0; color: #71869e; font-size: .79rem; line-height: 1.65; }
.landing-feature-card-featured h3, .landing-feature-card-featured p { color: #fff; }.landing-feature-card-featured p { color: #c8def1; }
.landing-feature-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 25px; }.landing-feature-tags span { padding: 5px 8px; border: 1px solid rgba(255,255,255,.18); border-radius: 5px; color: #d7eafd; font-size: .61rem; }
.landing-feature-link, .landing-text-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 19px; color: var(--landing-blue); font-size: .73rem; font-weight: 800; text-decoration: none; }.landing-feature-link:hover, .landing-text-link:hover { color: #0b4d98; }

.landing-process-section { background: #fff; }.landing-process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }.landing-process-heading { max-width: 410px; }.landing-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }.landing-step { display: flex; gap: 15px; padding: 22px 18px; border: 1px solid #e1ebf4; border-radius: 12px; background: #fbfdff; }.landing-step > span { color: #9cb9d4; font-size: .7rem; font-weight: 800; letter-spacing: .06em; }.landing-step h3 { margin: -3px 0 6px; color: var(--landing-ink); font-size: .88rem; font-weight: 800; }.landing-step p { margin: 0; color: #7890a9; font-size: .72rem; line-height: 1.55; }

.landing-integration-section { padding-top: 20px; background: #f8fbfe; }.landing-integration-card { display: grid; grid-template-columns: 1fr .9fr; gap: 60px; align-items: center; padding: 68px 75px; border-radius: 20px; background: linear-gradient(120deg, #edf7ff, #f0fffc); overflow: hidden; }.landing-integration-copy h2 { margin-bottom: 18px; }.landing-integration-copy p { max-width: 500px; margin: 0; color: #657f9c; font-size: .9rem; line-height: 1.7; }.landing-integration-points { display: grid; gap: 9px; margin: 23px 0 28px; }.landing-integration-points span { display: flex; align-items: center; gap: 8px; color: #456480; font-size: .75rem; font-weight: 700; }.landing-integration-points .mud-icon-root { color: var(--landing-teal); font-size: 17px; }.landing-integration-demo { padding: 21px; border: 1px solid rgba(255,255,255,.9); border-radius: 16px; background: rgba(255,255,255,.72); box-shadow: 0 15px 35px rgba(30,107,148,.1); }.landing-demo-header { padding-bottom: 16px; color: var(--landing-ink); font-size: .74rem; font-weight: 800; }.landing-demo-live { display: inline-flex; align-items: center; gap: 6px; color: #159e8e; font-size: .62rem; }.landing-demo-row { display: flex; align-items: center; gap: 11px; padding: 11px 0; }.landing-demo-step-icon { display: grid; flex: 0 0 34px; width: 34px; height: 34px; place-items: center; border-radius: 9px; }.landing-demo-step-icon .mud-icon-root { font-size: 18px; }.landing-demo-pos { color: #267dcb; background: #e6f2fd; }.landing-demo-fe { color: #14a18f; background: #e6faf7; }.landing-demo-dgii { color: #a77719; background: #fff6dc; }.landing-demo-row strong, .landing-demo-row small { display: block; }.landing-demo-row strong { color: var(--landing-ink); font-size: .72rem; }.landing-demo-row small { margin-top: 3px; color: #8799ad; font-size: .6rem; }.landing-demo-check { margin-left: auto; color: var(--landing-teal); font-size: 17px !important; }.landing-demo-connector { position: relative; height: 13px; margin-left: 16px; border-left: 1px dashed #a8d9d2; }.landing-demo-connector span { position: absolute; left: -3px; top: 4px; width: 5px; height: 5px; border-radius: 50%; background: var(--landing-teal); }

/* ── High-performance offline e-CF integration ─────────────── */
.landing-offline-section { position: relative; overflow: hidden; background: var(--landing-navy); }
.landing-offline-section::before { content: ''; position: absolute; width: 620px; height: 620px; right: -230px; top: -240px; border-radius: 50%; background: radial-gradient(circle, rgba(28,184,169,.2), transparent 68%); pointer-events: none; }
.landing-offline-heading, .landing-offline-product-card { position: relative; z-index: 1; }
.landing-offline-heading { max-width: 720px; }
.landing-offline-heading .landing-section-kicker { color: #69d6ca; }
.landing-offline-heading h2 { margin: 12px 0 14px; color: #fff; font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 800; line-height: 1.1; letter-spacing: -.055em; }.landing-offline-heading h2 span { color: #61cbe8; }
.landing-offline-heading p { max-width: 700px; margin: 0; color: #b8d0e5; font-size: .95rem; line-height: 1.7; }
.landing-offline-integrations { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }.landing-offline-integrations span { display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; border: 1px solid rgba(158,210,235,.2); border-radius: 6px; color: #d7ebf5; background: rgba(255,255,255,.07); font-size: .62rem; font-weight: 700; }.landing-offline-integrations .mud-icon-root { color: #69d6ca; font-size: 15px; }
.landing-offline-product-card { display: grid; grid-template-columns: .93fr 1.07fr; gap: 55px; align-items: center; margin-top: 42px; padding: 38px 42px; border: 1px solid rgba(153,211,231,.18); border-radius: 19px; background: linear-gradient(120deg, rgba(14,48,82,.98), rgba(10,67,83,.94)); box-shadow: 0 22px 50px rgba(0,0,0,.18); }
.landing-offline-product-label { display: flex; align-items: center; gap: 10px; color: #8de4da; font-size: .67rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }.landing-offline-product-icon { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 9px; color: #06354c; background: #69d6ca; box-shadow: 0 0 0 0 rgba(105,214,202,.35); animation: landing-offline-pulse 2.4s ease-in-out infinite; }.landing-offline-product-icon .mud-icon-root { font-size: 18px; }
.landing-offline-product-copy h3 { margin: 17px 0 17px; color: #fff; font-size: clamp(1.45rem, 2.25vw, 2rem); font-weight: 800; line-height: 1.16; letter-spacing: -.045em; }
.landing-offline-points { display: grid; gap: 15px; }.landing-offline-points > div { display: flex; align-items: flex-start; gap: 10px; }.landing-offline-points > div > .mud-icon-root { flex: 0 0 auto; margin-top: 1px; color: #69d6ca; font-size: 18px; }.landing-offline-points strong, .landing-offline-points small { display: block; }.landing-offline-points strong { color: #e8f7fb; font-size: .73rem; }.landing-offline-points small { max-width: 390px; margin-top: 3px; color: #9ebbd0; font-size: .62rem; line-height: 1.45; }
.landing-button-light-blue { margin-top: 25px; color: #07314b; background: #d8f7f3; box-shadow: 0 10px 24px rgba(0,0,0,.14); }.landing-button-light-blue:hover { color: #07314b; background: #fff; }
.landing-offline-flow { padding: 21px 23px 17px; border: 1px solid rgba(255,255,255,.78); border-radius: 15px; background: rgba(245,253,255,.96); box-shadow: 0 15px 35px rgba(0,0,0,.13); }.landing-offline-flow-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; color: var(--landing-ink); font-size: .72rem; font-weight: 800; }.landing-offline-flow-header .landing-demo-live { color: #159e8e; }
.landing-offline-flow-step { display: flex; align-items: center; gap: 10px; padding: 9px 0; }.landing-offline-step-icon { display: grid; flex: 0 0 33px; width: 33px; height: 33px; place-items: center; border-radius: 9px; }.landing-offline-step-icon .mud-icon-root { font-size: 17px; }.landing-offline-step-source { color: #267dcb; background: #e6f2fd; }.landing-offline-step-sign { color: #118e80; background: #e1faf5; }.landing-offline-step-queue { color: #a77719; background: #fff6dc; }.landing-offline-step-result { color: #5f72bb; background: #eef0ff; }.landing-offline-flow-step > span:nth-child(2) { min-width: 0; }.landing-offline-flow-step strong, .landing-offline-flow-step small { display: block; }.landing-offline-flow-step strong { color: var(--landing-ink); font-size: .69rem; }.landing-offline-flow-step small { margin-top: 3px; overflow: hidden; color: #8195a9; font-size: .57rem; text-overflow: ellipsis; white-space: nowrap; }.landing-offline-flow-step b { margin-left: auto; color: #159e8e; font-size: .53rem; white-space: nowrap; }.landing-offline-flow-step-highlight { padding: 9px 10px; border: 1px solid #bcece4; border-radius: 9px; background: #f1fffc; }.landing-offline-flow-line { position: relative; height: 10px; margin-left: 16px; border-left: 1px dashed #a8d9d2; }.landing-offline-flow-line span { position: absolute; left: -3px; top: 3px; width: 5px; height: 5px; border-radius: 50%; background: var(--landing-teal); animation: landing-offline-flow-dot 2.2s ease-in-out infinite; }.landing-offline-flow-line:nth-of-type(4) span { animation-delay: .7s; }.landing-offline-flow-line:nth-of-type(6) span { animation-delay: 1.4s; }
@keyframes landing-offline-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(105,214,202,.35); } 45% { box-shadow: 0 0 0 7px rgba(105,214,202,0); } }
@keyframes landing-offline-flow-dot { 0% { transform: translateY(-1px); opacity: .45; } 45%, 70% { transform: translateY(5px); opacity: 1; } 100% { transform: translateY(10px); opacity: .25; } }

/* ── Multi-platform apps and live rejection alerts ───────── */
.landing-platforms-section { position: relative; overflow: hidden; background: linear-gradient(135deg, #f5faff 0%, #ffffff 52%, #effbf9 100%); }
.landing-platforms-section::before { content: ''; position: absolute; width: 650px; height: 650px; left: -250px; top: 80px; border-radius: 50%; background: radial-gradient(circle, rgba(30,136,229,.09), transparent 68%); pointer-events: none; }
.landing-platforms-heading { position: relative; z-index: 1; max-width: 700px; }
.landing-platforms-heading h2 { margin: 12px 0 14px; color: var(--landing-navy); font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 800; line-height: 1.1; letter-spacing: -.055em; }
.landing-platforms-heading h2 span { color: var(--landing-sky); }
.landing-platforms-heading p { max-width: 670px; margin: 0; color: #68809c; font-size: .95rem; line-height: 1.7; }
.landing-platforms-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 62px; margin-top: 52px; }
.landing-device-stage { position: relative; min-height: 465px; }
.landing-device { position: absolute; color: #dceafa; }
.landing-device-laptop { z-index: 1; top: 25px; left: 1%; width: 77%; }
.landing-device-laptop-lid { padding: 11px 11px 13px; border: 1px solid #496887; border-radius: 17px 17px 8px 8px; background: linear-gradient(145deg, #102b4d, #07172c); box-shadow: 0 24px 40px rgba(8,35,70,.24); }
.landing-device-toolbar { display: flex; align-items: center; justify-content: space-between; height: 22px; padding: 0 4px 7px; color: #a6bdd6; font-size: .5rem; }
.landing-device-brand { display: inline-flex; align-items: center; gap: 5px; color: inherit; font-size: .61rem; font-weight: 800; letter-spacing: -.03em; }
.landing-device-brand > span { width: 8px; height: 8px; border-radius: 3px; background: linear-gradient(135deg, var(--landing-sky), var(--landing-teal)); box-shadow: 5px -3px 0 -1px rgba(30,136,229,.5); }
.landing-device-toolbar-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--landing-teal); box-shadow: 10px 0 0 #e0a837, 20px 0 0 #d86b78; }
.landing-device-screen { overflow: hidden; border: 1px solid #b9d1e7; background: #f6fbff; }
.landing-device-laptop .landing-device-screen { display: flex; min-height: 245px; border-radius: 5px; }
.landing-desktop-sidebar { display: flex; flex: 0 0 11%; flex-direction: column; align-items: center; gap: 19px; padding-top: 20px; background: #0d315a; }
.landing-desktop-sidebar span { width: 12px; height: 4px; border-radius: 2px; background: rgba(205,229,249,.52); }.landing-desktop-sidebar span:first-child { background: var(--landing-teal); }
.landing-desktop-content { flex: 1; padding: 22px 23px; }
.landing-desktop-title { display: flex; align-items: baseline; justify-content: space-between; color: var(--landing-ink); font-size: .67rem; font-weight: 800; }.landing-desktop-title small { color: #8ca2b8; font-size: .45rem; font-weight: 600; }
.landing-desktop-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 18px 0; }.landing-desktop-stats span { padding: 10px; border: 1px solid #e0ebf4; border-radius: 7px; background: #fff; }.landing-desktop-stats small, .landing-desktop-stats strong { display: block; }.landing-desktop-stats small { color: #8ba0b5; font-size: .45rem; }.landing-desktop-stats strong { margin-top: 5px; color: var(--landing-ink); font-size: .95rem; }.landing-desktop-stat-alert { border-color: #f3d7d6 !important; background: #fff9f9 !important; }.landing-desktop-stat-alert strong { color: #c55050; }
.landing-desktop-alert { display: flex; align-items: center; gap: 9px; padding: 11px; border: 1px solid #f0d8d7; border-radius: 7px; background: #fff8f8; }.landing-desktop-alert > span { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 7px; color: #c55050; background: #ffe8e7; }.landing-desktop-alert strong, .landing-desktop-alert small { display: block; }.landing-desktop-alert strong { color: #9e3c42; font-size: .56rem; }.landing-desktop-alert small { margin-top: 3px; color: #af7c7e; font-size: .43rem; }.landing-desktop-alert b { margin-left: auto; align-self: flex-start; color: #c55050; font-size: .42rem; white-space: nowrap; }
.landing-device-laptop-base { position: relative; width: 112%; height: 13px; margin-left: -6%; border-radius: 0 0 12px 12px; background: linear-gradient(#8ba7c0, #597894); box-shadow: 0 8px 13px rgba(8,35,70,.18); }.landing-device-laptop-base::after { content: ''; position: absolute; left: 39%; top: 0; width: 22%; height: 4px; border-radius: 0 0 5px 5px; background: #41627f; }
.landing-device-tablet { z-index: 2; top: 69px; right: 1%; width: 35%; transform: rotate(6deg); }.landing-device-bezel { padding: 10px; border: 1px solid #5c7895; border-radius: 17px; background: #112b4a; box-shadow: 0 20px 32px rgba(8,35,70,.25); }.landing-tablet-screen { min-height: 285px; border-radius: 10px; background: linear-gradient(160deg, #f2fcff, #e8f9f6); }.landing-tablet-header { display: flex; align-items: center; justify-content: space-between; padding: 13px 11px 9px; color: var(--landing-blue); }.landing-tablet-header .mud-icon-root { color: var(--landing-teal); }.landing-tablet-header .landing-device-brand { font-size: .5rem; }.landing-tablet-greeting { padding: 10px 11px; color: var(--landing-ink); font-size: .6rem; font-weight: 800; }.landing-tablet-card { margin: 0 10px 13px; padding: 13px 10px; border-radius: 9px; color: #fff; background: linear-gradient(135deg, #1264a9, #149b8f); box-shadow: 0 9px 14px rgba(21,101,192,.18); }.landing-tablet-card small, .landing-tablet-card strong, .landing-tablet-card span { display: block; }.landing-tablet-card small { opacity: .72; font-size: .42rem; }.landing-tablet-card strong { margin: 7px 0 10px; font-size: .68rem; }.landing-tablet-card span { font-size: .43rem; }.landing-tablet-card i { display: inline-block; width: 5px; height: 5px; margin-right: 4px; border-radius: 50%; background: #8df0dd; }.landing-tablet-row { display: flex; align-items: center; gap: 7px; margin: 0 10px; padding: 9px 0; border-top: 1px solid #d8e9ec; }.landing-tablet-row > span { width: 21px; height: 21px; border-radius: 6px; background: #dff5f1; }.landing-tablet-row strong, .landing-tablet-row small { display: block; }.landing-tablet-row strong { color: var(--landing-ink); font-size: .46rem; }.landing-tablet-row small { margin-top: 3px; color: #7d99a8; font-size: .38rem; }.landing-tablet-row .mud-icon-root { margin-left: auto; color: var(--landing-teal); font-size: 13px; }
.landing-device-phone { z-index: 3; bottom: 2px; left: 27%; width: 22%; transform: rotate(-7deg); }.landing-device-phone { padding: 8px 6px; border: 1px solid #4d6b89; border-radius: 20px; background: #0d2039; box-shadow: 0 20px 35px rgba(8,35,70,.3); }.landing-device-speaker { position: absolute; z-index: 2; top: 12px; left: 40%; width: 20%; height: 3px; border-radius: 3px; background: #476581; }.landing-phone-screen { min-height: 260px; border-radius: 14px; background: linear-gradient(160deg, #f9fdff, #edf8ff); }.landing-phone-header, .landing-phone-appbar { display: flex; align-items: center; justify-content: space-between; padding: 12px 9px 5px; color: #7f98ae; font-size: .42rem; }.landing-phone-appbar { padding-top: 9px; color: var(--landing-blue); }.landing-phone-appbar .landing-device-brand { font-size: .47rem; }.landing-phone-notification { display: flex; align-items: center; gap: 5px; margin: 28px 6px 12px; padding: 8px 6px; border: 1px solid #f0d0d0; border-radius: 8px; background: #fff7f7; box-shadow: 0 7px 14px rgba(166,64,64,.1); }.landing-phone-notification > span { display: grid; width: 20px; height: 20px; place-items: center; border-radius: 6px; color: #c55050; background: #ffe5e4; }.landing-phone-notification strong, .landing-phone-notification small { display: block; }.landing-phone-notification strong { color: #9e3c42; font-size: .4rem; }.landing-phone-notification small { margin-top: 2px; color: #b27e81; font-size: .34rem; }.landing-phone-notification b { margin-left: auto; align-self: flex-start; color: #c55050; font-size: .32rem; }.landing-phone-line { width: 72%; height: 5px; margin: 19px 10px 0; border-radius: 3px; background: #d6e7f2; }.landing-phone-line.short { width: 45%; margin-top: 8px; }.landing-device-home { width: 25%; height: 3px; margin: 7px auto 0; border-radius: 3px; background: #476581; }
.landing-platform-badges { position: absolute; bottom: -2px; left: 4%; display: flex; flex-wrap: wrap; gap: 7px; }.landing-platform-badges span { display: inline-flex; align-items: center; gap: 4px; padding: 6px 8px; border: 1px solid #dce9f3; border-radius: 6px; color: #64809d; background: rgba(255,255,255,.8); font-size: .54rem; font-weight: 700; }.landing-platform-badges .mud-icon-root { color: var(--landing-blue); font-size: 13px; }
.landing-device-toolbar { justify-content: flex-start; gap: 9px; }
.landing-device-toolbar-dot { order: -1; flex: 0 0 5px; margin-left: 1px; margin-right: 5px; }
.landing-device-phone { bottom: 48px; }
.landing-platform-badges { right: 4%; bottom: 0; justify-content: center; }
.landing-alert-panel { padding: 24px; border: 1px solid #dceaf3; border-radius: 18px; background: rgba(255,255,255,.88); box-shadow: 0 20px 45px rgba(20,86,128,.1); }.landing-alert-panel-header { display: flex; align-items: center; gap: 10px; }.landing-notification-icon { display: grid; flex: 0 0 37px; width: 37px; height: 37px; place-items: center; border-radius: 11px; color: #fff; background: linear-gradient(135deg, var(--landing-blue), var(--landing-teal)); box-shadow: 0 8px 16px rgba(21,101,192,.18); }.landing-alert-panel-header strong, .landing-alert-panel-header span { display: block; }.landing-alert-panel-header strong { color: var(--landing-ink); font-size: .82rem; }.landing-alert-panel-header > div > span { margin-top: 3px; color: #8399ad; font-size: .59rem; }.landing-alert-panel-header .landing-live-pill { margin-left: auto; font-size: .5rem; }
.landing-rejection-alert { margin: 22px 0 20px; padding: 15px; border: 1px solid #f1d4d3; border-radius: 11px; background: linear-gradient(120deg, #fff9f9, #fff); }.landing-rejection-alert-title { display: flex; align-items: center; gap: 9px; }.landing-rejection-alert-title > span { display: grid; flex: 0 0 29px; width: 29px; height: 29px; place-items: center; border-radius: 8px; color: #c55050; background: #ffe8e7; }.landing-rejection-alert-title strong, .landing-rejection-alert-title small { display: block; }.landing-rejection-alert-title strong { color: #9e3c42; font-size: .68rem; }.landing-rejection-alert-title small { margin-top: 3px; color: #af7c7e; font-size: .5rem; }.landing-rejection-alert-title time { margin-left: auto; align-self: flex-start; color: #c55050; font-size: .48rem; font-weight: 700; }.landing-rejection-alert p { margin: 12px 0; color: #856c70; font-size: .62rem; line-height: 1.55; }.landing-rejection-alert-meta { display: flex; justify-content: space-between; gap: 8px; color: #aa7f82; font-size: .48rem; font-weight: 700; }.landing-rejection-alert-meta span { display: inline-flex; align-items: center; gap: 4px; }.landing-rejection-alert-meta .mud-icon-root { color: var(--landing-teal); font-size: 13px; }
.landing-alert-rules { padding-top: 18px; border-top: 1px solid #e9f0f5; }.landing-alert-rules-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 11px; }.landing-alert-rules-heading small, .landing-alert-rules-heading strong { display: block; }.landing-alert-rules-heading small { color: var(--landing-blue); font-size: .48rem; font-weight: 800; letter-spacing: .12em; }.landing-alert-rules-heading strong { margin-top: 4px; color: var(--landing-ink); font-size: .78rem; }.landing-alert-rules-heading > .mud-icon-root { color: #829bb2; }
.landing-alert-rule { display: flex; align-items: flex-start; gap: 9px; padding: 10px 9px; border: 1px solid transparent; border-radius: 8px; }.landing-alert-rule-active { border-color: #cdeee9; background: #f4fffd; }.landing-alert-radio { display: block; flex: 0 0 12px; width: 12px; height: 12px; margin-top: 2px; border: 2px solid #a9bed0; border-radius: 50%; }.landing-alert-rule-active .landing-alert-radio { border-color: var(--landing-teal); box-shadow: inset 0 0 0 3px #f4fffd; background: var(--landing-teal); }.landing-alert-rule strong, .landing-alert-rule small { display: block; }.landing-alert-rule strong { color: var(--landing-ink); font-size: .62rem; }.landing-alert-rule small { max-width: 260px; margin-top: 3px; color: #8095a9; font-size: .52rem; line-height: 1.4; }.landing-alert-rule > b { margin-left: auto; color: #159e8e; font-size: .5rem; white-space: nowrap; }.landing-alert-panel-footer { display: flex; align-items: center; gap: 5px; margin-top: 16px; color: #718ba2; font-size: .53rem; }.landing-alert-panel-footer .mud-icon-root { color: var(--landing-teal); font-size: 14px; }

@keyframes landing-device-laptop-in { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes landing-device-tablet-in { from { opacity: 0; transform: translate(24px, 24px) rotate(6deg) scale(.96); } to { opacity: 1; transform: translate(0, 0) rotate(6deg) scale(1); } }
@keyframes landing-device-phone-in { from { opacity: 0; transform: translate(-12px, 28px) rotate(-7deg) scale(.95); } to { opacity: 1; transform: translate(0, 0) rotate(-7deg) scale(1); } }
@keyframes landing-laptop-float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-5px) scale(1); } }
@keyframes landing-tablet-float { 0%, 100% { transform: translate(0, 0) rotate(6deg); } 50% { transform: translate(0, -7px) rotate(6deg); } }
@keyframes landing-phone-float { 0%, 100% { transform: translate(0, 0) rotate(-7deg); } 50% { transform: translate(0, -6px) rotate(-7deg); } }
@keyframes landing-alert-panel-in { from { opacity: 0; transform: translateX(22px); } to { opacity: 1; transform: translateX(0); } }
@keyframes landing-rejection-pulse { 0%, 72%, 100% { box-shadow: 0 7px 14px rgba(166,64,64,.1); } 78% { box-shadow: 0 0 0 5px rgba(197,80,80,.1), 0 10px 20px rgba(166,64,64,.16); } 86% { box-shadow: 0 0 0 0 rgba(197,80,80,0), 0 7px 14px rgba(166,64,64,.1); } }
@keyframes landing-live-blink { 0%, 100% { opacity: .42; } 50% { opacity: 1; } }
@keyframes landing-rule-glow { 0%, 100% { box-shadow: 0 0 0 rgba(20,184,166,0); } 50% { box-shadow: 0 0 0 4px rgba(20,184,166,.06); } }
.landing-device-laptop { animation: landing-device-laptop-in .75s cubic-bezier(.2,.8,.2,1) both, landing-laptop-float 6s 1s ease-in-out infinite; }
.landing-device-tablet { animation: landing-device-tablet-in .75s .16s cubic-bezier(.2,.8,.2,1) both, landing-tablet-float 6.5s 1.2s ease-in-out infinite; }
.landing-device-phone { animation: landing-device-phone-in .75s .3s cubic-bezier(.2,.8,.2,1) both, landing-phone-float 5.5s 1.35s ease-in-out infinite; }
.landing-alert-panel { animation: landing-alert-panel-in .75s .25s cubic-bezier(.2,.8,.2,1) both; }
.landing-phone-notification { animation: landing-rejection-pulse 4.5s 1.8s ease-in-out infinite; }
.landing-platforms-section .landing-live-pill > span { animation: landing-live-blink 1.8s ease-in-out infinite; }
.landing-alert-rule-active { animation: landing-rule-glow 3.8s 2s ease-in-out infinite; }

.landing-types-section { background: #fff; }.landing-section-heading-centered { max-width: 600px; margin: 0 auto; text-align: center; }.landing-section-heading-centered p { margin: auto; }.landing-types-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 45px; }.landing-types-grid div { min-height: 122px; padding: 18px 14px; border: 1px solid #e0ebf4; border-radius: 10px; background: #fbfdff; }.landing-types-grid strong { display: block; color: var(--landing-sky); font-size: 1.55rem; font-weight: 800; letter-spacing: -.05em; }.landing-types-grid span { display: block; margin-top: 8px; color: #637e9b; font-size: .67rem; line-height: 1.42; }
.landing-final-cta { position: relative; padding: 76px 0; overflow: hidden; background: var(--landing-navy); }.landing-final-cta::after { content: ''; position: absolute; width: 500px; height: 500px; right: -160px; top: -280px; border-radius: 50%; background: radial-gradient(circle, rgba(30,136,229,.3), transparent 70%); }.landing-final-cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; }.landing-final-cta h2 { margin-bottom: 0; color: #fff; }.landing-final-cta .landing-section-kicker { color: #69d6ca; }.landing-final-cta-actions { display: flex; flex-direction: column; align-items: center; gap: 13px; }.landing-button-light { color: var(--landing-navy); background: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.18); }.landing-button-light:hover { color: var(--landing-navy); background: #e8f7ff; }.landing-final-link { color: #c1d7eb; font-size: .72rem; font-weight: 700; text-decoration: none; }.landing-final-link:hover { color: #fff; }.landing-footer { padding: 25px 0; background: #041021; }.landing-footer-inner { display: flex; align-items: center; gap: 28px; color: #7894b3; font-size: .67rem; }.landing-footer-inner > span:last-child { margin-left: auto; }.landing-footer .landing-brand { color: #fff; font-size: .98rem; }.landing-footer .landing-brand-mark { width: 28px; height: 28px; }

@media (max-width: 1000px) { .landing-nav-links { gap: 17px; }.landing-hero-grid { grid-template-columns: 1fr; }.landing-hero-copy { max-width: 680px; margin: auto; text-align: center; }.landing-eyebrow, .landing-hero-note { justify-content: center; }.landing-hero-actions { justify-content: center; }.landing-hero-visual { max-width: 620px; width: 100%; margin: auto; }.landing-feature-grid { grid-template-columns: repeat(2, 1fr); }.landing-feature-card-featured { grid-row: auto; }.landing-integration-card { padding: 52px 42px; gap: 35px; }.landing-offline-product-card { gap: 32px; padding: 34px 30px; }.landing-types-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 720px) { .landing-container, .landing-nav { width: min(100% - 32px, 570px); }.landing-nav { height: 70px; }.landing-nav-links { display: none; }.landing-login-link { display: none; }.landing-hero { min-height: 0; padding: 125px 0 60px; }.landing-hero h1 { font-size: clamp(2.35rem, 12vw, 3.4rem); }.landing-hero-lead { font-size: .94rem; }.landing-hero-visual { min-height: 365px; padding: 32px 0 10px; }.landing-glow-card { padding: 15px; }.landing-connection-canvas { gap: 6px; margin: 25px 0 19px; }.landing-system-card { padding: 10px 7px; gap: 6px; }.landing-system-icon { flex-basis: 29px; width: 29px; height: 29px; }.landing-system-card small { font-size: .5rem; }.landing-connection-line { flex-basis: 23px; }.landing-float-approved { left: -7px; bottom: 36px; }.landing-float-volume { right: -7px; top: 3px; }.landing-trust-items { justify-content: flex-start; flex-wrap: wrap; gap: 13px 18px; padding: 18px 0; }.landing-trust-label { width: 100%; }.landing-trust-items > span { font-size: .64rem; }.landing-deadline-section { right: max(12px, env(safe-area-inset-right)); bottom: max(12px, env(safe-area-inset-bottom)); width: calc(100vw - 24px); max-height: calc(100vh - 24px); }.landing-deadline-card { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 12px; padding: 12px; }.landing-deadline-kicker { gap: 5px; font-size: .88rem; letter-spacing: -.025em; }.landing-deadline-kicker strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.landing-deadline-context { font-size: .43rem; letter-spacing: .05em; }.landing-warning-mark { width: 23px; height: 23px; border-radius: 7px; }.landing-warning-mark .mud-icon-root { font-size: 15px; }.landing-deadline-date { font-size: .58rem; }.landing-deadline-date .mud-icon-root { font-size: 13px; }.landing-deadline-copy p { margin-top: 5px; font-size: .56rem; line-height: 1.35; }.landing-deadline-link { margin-top: 5px; font-size: .54rem; }.landing-countdown-panel { padding: 10px 8px 8px; }.landing-countdown-label { font-size: .46rem; }.landing-countdown-grid { gap: 3px; margin-top: 6px; }.landing-countdown-grid div { padding: 6px 1px 5px; }.landing-countdown-grid strong { font-size: clamp(.75rem, 3.2vw, 1rem); letter-spacing: -.1em; }.landing-countdown-grid span { font-size: .36rem; }.landing-countdown-footer { margin-top: 6px; font-size: .43rem; }.landing-countdown-footer .mud-icon-root { font-size: 12px; }.landing-section { padding: 75px 0; }.landing-feature-grid, .landing-process-grid, .landing-integration-card, .landing-offline-product-card, .landing-platforms-layout { grid-template-columns: 1fr; }.landing-feature-card { min-height: 0; }.landing-process-grid { gap: 38px; }.landing-steps { grid-template-columns: 1fr; }.landing-integration-section { padding-top: 0; }.landing-integration-card { padding: 36px 24px; }.landing-offline-product-card { gap: 31px; padding: 30px 21px; }.landing-offline-flow { padding: 18px 15px 14px; }.landing-offline-flow-step small { white-space: normal; }.landing-offline-flow-step b { font-size: .48rem; }.landing-platforms-layout { gap: 24px; margin-top: 36px; }.landing-platforms-heading h2 { font-size: 2.15rem; }.landing-device-stage { min-height: 350px; transform: scale(.92); transform-origin: top center; margin-bottom: -28px; }.landing-alert-panel { padding: 18px; }.landing-types-grid { grid-template-columns: repeat(2, 1fr); }.landing-types-grid div { min-height: 112px; }.landing-final-cta-inner { flex-direction: column; align-items: flex-start; }.landing-final-cta-actions { align-items: flex-start; }.landing-footer-inner { flex-wrap: wrap; gap: 12px 20px; }.landing-footer-inner > span:last-child { width: 100%; margin-left: 0; } }
@media (prefers-reduced-motion: reduce) { .landing-connection-pulse, .landing-float-card, .landing-device-laptop, .landing-device-tablet, .landing-device-phone, .landing-alert-panel, .landing-phone-notification, .landing-platforms-section .landing-live-pill > span, .landing-alert-rule-active, .landing-warning-mark, .landing-offline-product-icon, .landing-offline-flow-line span { animation: none; } .landing-button, .landing-feature-card { transition: none; } }

/* ── Blazor Error UI ────────────────────────────────────── */
.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}
.blazor-error-boundary::after { content: "Ha ocurrido un error inesperado." }

/* ── Print ──────────────────────────────────────────────── */
@media print {
    html, body, .mud-main-content { background: transparent !important; }
    .mud-appbar, .mud-drawer { display: none !important; }
}
