.scscm-root,
.scscm-root * {
    box-sizing: border-box;
}

.scscm-root {
    --scscm-shadow: 0 28px 90px rgba(0, 0, 0, .38);
    --scscm-shadow-soft: 0 14px 40px rgba(0, 0, 0, .24);
    --scscm-focus: 0 0 0 3px color-mix(in srgb, var(--scscm-accent) 35%, transparent);
    font-family: inherit;
    color: var(--scscm-text);
}

.scscm-root button,
.scscm-root a,
.scscm-inline-settings {
    font: inherit;
}

.scscm-banner {
    position: fixed;
    z-index: 2147483000;
    width: min(860px, calc(100vw - 32px));
    max-height: calc(100dvh - 32px);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--scscm-border) 82%, white 18%);
    border-radius: var(--scscm-radius);
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--scscm-surface) 92%, var(--scscm-accent) 8%), var(--scscm-surface));
    box-shadow: var(--scscm-shadow);
    isolation: isolate;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: scscm-rise .34s ease-out both;
}

.scscm-pos-bottom-center .scscm-banner {
    left: 50%;
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
}

.scscm-pos-bottom-left .scscm-banner {
    left: 20px;
    bottom: 20px;
}

.scscm-pos-bottom-right .scscm-banner {
    right: 20px;
    bottom: 20px;
}

.scscm-banner[hidden],
.scscm-modal[hidden],
.scscm-backdrop[hidden] {
    display: none !important;
}

.scscm-banner-inner {
    position: relative;
    z-index: 2;
    max-height: calc(100dvh - 32px);
    padding: 26px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scscm-banner-inner::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.scscm-glow {
    position: absolute;
    pointer-events: none;
    filter: blur(60px);
    opacity: .24;
    border-radius: 999px;
    z-index: 0;
}

.scscm-glow-a {
    width: 180px;
    height: 180px;
    background: var(--scscm-accent);
    right: -30px;
    top: -80px;
}

.scscm-glow-b {
    width: 160px;
    height: 160px;
    background: var(--scscm-accent-2);
    left: -60px;
    bottom: -90px;
}

.scscm-brand-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.scscm-brand-mark {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--scscm-accent), var(--scscm-accent-2));
    color: #04161d;
    font-weight: 900;
    letter-spacing: -.05em;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--scscm-accent) 28%, transparent);
}

.scscm-brand-mark img {
    display: block;
}

/* Real brand logos use a transparent, background-free canvas. The default
   230 x 75 px bounds match the supplied iNetMoney artwork ratio (1218:397). */
.scscm-brand-mark.scscm-brand-mark--image {
    flex: 0 1 auto;
    width: auto;
    height: auto;
    max-width: var(--scscm-logo-max-width);
    max-height: var(--scscm-logo-max-height);
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    color: inherit;
}

.scscm-logo-auto .scscm-brand-mark--image img {
    width: auto;
    height: auto;
    max-width: var(--scscm-logo-max-width);
    max-height: var(--scscm-logo-max-height);
    object-fit: contain;
    object-position: center;
    background: transparent;
}

.scscm-logo-fixed .scscm-brand-mark--image {
    flex: 0 0 var(--scscm-logo-max-width);
    width: var(--scscm-logo-max-width);
    height: var(--scscm-logo-max-height);
}

.scscm-logo-fixed .scscm-brand-mark--image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: transparent;
}

.scscm-eyebrow {
    margin-bottom: 3px;
    color: var(--scscm-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.scscm-banner h2,
.scscm-modal h2 {
    margin: 0;
    color: var(--scscm-text);
    font-size: clamp(22px, 3vw, 31px);
    line-height: 1.14;
    letter-spacing: -.025em;
}

.scscm-copy {
    margin-top: 18px;
    color: var(--scscm-muted);
    font-size: 15px;
    line-height: 1.65;
}

.scscm-copy p {
    margin: 0;
}

.scscm-copy p + p {
    margin-top: 10px;
}

.scscm-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 12px;
}

.scscm-policy-links a,
.scscm-service a {
    color: color-mix(in srgb, var(--scscm-accent-2) 80%, white 20%);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.scscm-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.scscm-btn {
    appearance: none;
    border: 1px solid transparent;
    border-radius: 14px;
    min-height: 48px;
    padding: 12px 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.scscm-btn:hover {
    transform: translateY(-1px);
}

.scscm-btn:focus-visible,
.scscm-icon-btn:focus-visible,
.scscm-category-toggle-details:focus-visible,
.scscm-reopen:focus-visible,
.scscm-inline-settings:focus-visible {
    outline: none;
    box-shadow: var(--scscm-focus);
}

.scscm-btn-primary {
    background: linear-gradient(135deg, var(--scscm-accent), var(--scscm-accent-2));
    color: #04151d;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--scscm-accent) 22%, transparent);
}

.scscm-btn-secondary {
    background: color-mix(in srgb, var(--scscm-surface-alt) 86%, white 14%);
    border-color: color-mix(in srgb, var(--scscm-border) 76%, white 24%);
    color: var(--scscm-text);
}

.scscm-btn-ghost {
    background: transparent;
    border-color: var(--scscm-border);
    color: var(--scscm-text);
}

.scscm-powered {
    margin-top: 12px;
    color: var(--scscm-muted);
    font-size: 11px;
    text-align: right;
    opacity: .72;
}

.scscm-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2147483200;
    background: rgba(1, 7, 15, .68);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: scscm-fade .2s ease-out both;
}

.scscm-modal {
    position: fixed;
    z-index: 2147483300;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(820px, calc(100vw - 28px));
    max-height: min(860px, calc(100vh - 28px));
    display: grid;
    grid-template-rows: auto 1fr auto;
    border: 1px solid color-mix(in srgb, var(--scscm-border) 78%, white 22%);
    border-radius: var(--scscm-radius);
    overflow: hidden;
    background: linear-gradient(180deg, color-mix(in srgb, var(--scscm-surface) 95%, white 5%), var(--scscm-surface));
    box-shadow: var(--scscm-shadow);
    animation: scscm-pop .24s ease-out both;
}

.scscm-modal-head,
.scscm-modal-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    background: color-mix(in srgb, var(--scscm-surface-alt) 54%, transparent);
}

.scscm-modal-head {
    border-bottom: 1px solid var(--scscm-border);
}

.scscm-modal-head-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.scscm-modal-logo {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 14px;
}

.scscm-modal-logo.scscm-brand-mark--image {
    width: auto;
    height: auto;
    max-width: min(var(--scscm-logo-max-width), 184px);
    max-height: min(var(--scscm-logo-max-height), 60px);
    flex-basis: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.scscm-modal-logo.scscm-brand-mark--image img {
    width: auto;
    height: auto;
    max-width: min(var(--scscm-logo-max-width), 184px);
    max-height: min(var(--scscm-logo-max-height), 60px);
    object-fit: contain;
    background: transparent;
}

.scscm-logo-fixed .scscm-modal-logo.scscm-brand-mark--image {
    width: min(var(--scscm-logo-max-width), 184px);
    height: min(var(--scscm-logo-max-height), 60px);
    flex-basis: min(var(--scscm-logo-max-width), 184px);
}

.scscm-logo-fixed .scscm-modal-logo.scscm-brand-mark--image img {
    width: 100%;
    height: 100%;
}

.scscm-modal-foot {
    justify-content: flex-end;
    border-top: 1px solid var(--scscm-border);
}

.scscm-modal-foot .scscm-btn {
    min-width: 180px;
}

.scscm-icon-btn {
    appearance: none;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 1px solid var(--scscm-border);
    border-radius: 13px;
    background: transparent;
    color: var(--scscm-text);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.scscm-modal-body {
    min-height: 0;
    overflow: auto;
    padding: 20px 22px 24px;
}

.scscm-modal-intro {
    margin: 0 0 16px;
    color: var(--scscm-muted);
    line-height: 1.6;
}

.scscm-categories {
    display: grid;
    gap: 10px;
}

.scscm-category {
    border: 1px solid var(--scscm-border);
    border-radius: 18px;
    background: color-mix(in srgb, var(--scscm-surface-alt) 64%, transparent);
    overflow: hidden;
}

.scscm-category-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 15px;
}

.scscm-category-toggle-details {
    appearance: none;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    padding: 0;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
    cursor: pointer;
}

.scscm-category-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: color-mix(in srgb, var(--scscm-accent) 14%, var(--scscm-surface));
    border: 1px solid color-mix(in srgb, var(--scscm-accent) 34%, var(--scscm-border));
    color: var(--scscm-accent);
    font-size: 20px;
    font-weight: 700;
}

.scscm-category-toggle-details strong {
    display: block;
    margin: 0 0 4px;
    color: var(--scscm-text) !important;
    -webkit-text-fill-color: var(--scscm-text);
    font-size: 15px;
    font-weight: 800;
    opacity: 1;
}

.scscm-category-toggle-details small {
    display: block;
    color: var(--scscm-muted);
    font-size: 12.5px;
    line-height: 1.45;
}

.scscm-category-details {
    padding: 0 15px 15px;
}

.scscm-category-details[hidden] {
    display: none !important;
}

.scscm-service {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: start;
    padding: 14px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--scscm-surface) 84%, white 16%);
}

.scscm-service + .scscm-service {
    margin-top: 8px;
}

.scscm-service-main > strong {
    display: block;
    color: var(--scscm-text) !important;
    -webkit-text-fill-color: var(--scscm-text);
    font-size: 14px;
    font-weight: 800;
    opacity: 1;
}

.scscm-service-main > span {
    display: block;
    margin-top: 2px;
    color: var(--scscm-accent-2);
    font-size: 11px;
}

.scscm-service-main p {
    margin: 7px 0 0;
    color: var(--scscm-muted);
    font-size: 12.5px;
    line-height: 1.5;
}

.scscm-service-main details {
    margin-top: 8px;
    color: var(--scscm-muted);
    font-size: 12px;
}

.scscm-service-main pre {
    white-space: pre-wrap;
    font-family: inherit;
    margin: 6px 0 0;
}

.scscm-empty-service {
    margin: 0;
    padding: 12px;
    color: var(--scscm-muted);
    font-size: 12.5px;
}

.scscm-required-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--scscm-accent) 14%, transparent);
    border: 1px solid color-mix(in srgb, var(--scscm-accent) 34%, var(--scscm-border));
    color: var(--scscm-accent);
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.scscm-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.scscm-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.scscm-switch-ui {
    display: block;
    width: 48px;
    height: 28px;
    border: 1px solid var(--scscm-border);
    border-radius: 999px;
    background: color-mix(in srgb, var(--scscm-surface) 82%, white 18%);
    cursor: pointer;
    transition: .18s ease;
}

.scscm-switch-ui::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    margin: 3px;
    border-radius: 50%;
    background: var(--scscm-muted);
    transition: .18s ease;
}

.scscm-switch input:checked + .scscm-switch-ui {
    background: color-mix(in srgb, var(--scscm-accent) 62%, var(--scscm-surface));
    border-color: var(--scscm-accent);
}

.scscm-switch input:checked + .scscm-switch-ui::after {
    transform: translateX(20px);
    background: white;
}

.scscm-switch input:disabled + .scscm-switch-ui {
    opacity: .72;
    cursor: not-allowed;
}

.scscm-switch input:focus-visible + .scscm-switch-ui {
    box-shadow: var(--scscm-focus);
}

.scscm-reopen {
    position: fixed;
    z-index: 2147482000;
    left: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    border: 1px solid color-mix(in srgb, var(--scscm-border) 76%, white 24%);
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--scscm-surface-alt), var(--scscm-surface));
    color: var(--scscm-accent);
    cursor: pointer;
    box-shadow: var(--scscm-shadow-soft);
}

.scscm-reopen svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.scscm-inline-settings {
    appearance: none;
    border: 0;
    background: transparent;
    color: inherit;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.scscm-embed-wrap {
    position: relative;
    width: 100%;
    min-height: 240px;
}

.scscm-embed-wrap > iframe {
    width: 100%;
}

.scscm-embed-placeholder {
    width: 100%;
    min-height: 240px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    border: 1px solid var(--scscm-border);
    border-radius: min(var(--scscm-radius), 20px);
    background: linear-gradient(145deg, var(--scscm-surface-alt), var(--scscm-surface));
    color: var(--scscm-text);
}

.scscm-embed-placeholder p {
    max-width: 560px;
    margin: 0 0 6px;
    color: var(--scscm-muted);
    line-height: 1.5;
}

.scscm-embed-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: color-mix(in srgb, var(--scscm-accent) 15%, transparent);
    color: var(--scscm-accent);
    font-size: 20px;
}

.scscm-modal-open {
    overflow: hidden;
}

.scscm-root .screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes scscm-rise {
    from { opacity: 0; transform: translate(-50%, calc(-50% + 14px)) scale(.985); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.scscm-pos-bottom-left .scscm-banner,
.scscm-pos-bottom-right .scscm-banner {
    animation-name: scscm-rise-side;
}

@keyframes scscm-rise-side {
    from { opacity: 0; transform: translateY(14px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes scscm-pop {
    from { opacity: 0; transform: translate(-50%, -47%) scale(.985); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes scscm-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 720px) {
    .scscm-banner {
        width: calc(100vw - 16px);
        max-height: calc(100vh - 16px);
        border-radius: 20px;
    }
    .scscm-pos-bottom-center .scscm-banner {
        left: 50%;
        right: auto;
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
        animation-name: scscm-rise;
    }
    .scscm-pos-bottom-left .scscm-banner,
    .scscm-pos-bottom-right .scscm-banner {
        top: auto;
        bottom: 8px;
        transform: none;
    }
    .scscm-pos-bottom-left .scscm-banner {
        left: 8px;
        right: 8px;
    }
    .scscm-pos-bottom-right .scscm-banner {
        left: 8px;
        right: 8px;
    }
    .scscm-banner-inner {
        padding: 19px;
    }
    .scscm-brand-mark {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 15px;
    }
    .scscm-banner h2,
    .scscm-modal h2 {
        font-size: 22px;
    }
    .scscm-copy {
        font-size: 14px;
    }
    .scscm-actions {
        grid-template-columns: 1fr;
    }
    .scscm-actions .scscm-btn-primary {
        order: -1;
    }
    .scscm-modal {
        width: calc(100vw - 12px);
        max-height: calc(100vh - 12px);
        border-radius: 18px;
    }
    .scscm-modal-head,
    .scscm-modal-foot,
    .scscm-modal-body {
        padding-left: 16px;
        padding-right: 16px;
    }
    .scscm-modal-head-actions {
        gap: 8px;
    }
    .scscm-modal-logo {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 12px;
    }
    .scscm-brand-mark.scscm-brand-mark--image {
        width: auto;
        height: auto;
        max-width: min(var(--scscm-logo-max-width), 160px);
        max-height: min(var(--scscm-logo-max-height), 52px);
        flex-basis: auto;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }
    .scscm-brand-mark.scscm-brand-mark--image img,
    .scscm-modal-logo.scscm-brand-mark--image img {
        width: auto;
        height: auto;
        max-width: min(var(--scscm-logo-max-width), 160px);
        max-height: min(var(--scscm-logo-max-height), 52px);
        object-fit: contain;
    }
    .scscm-modal-foot {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .scscm-modal-foot .scscm-btn {
        min-width: 0;
    }
    .scscm-category-head {
        grid-template-columns: 1fr auto;
    }
    .scscm-category-toggle-details {
        grid-template-columns: 30px 1fr;
        gap: 10px;
    }
    .scscm-category-icon {
        width: 30px;
        height: 30px;
    }
    .scscm-service {
        grid-template-columns: 1fr auto;
    }
    .scscm-reopen {
        width: 42px;
        height: 42px;
        left: 10px;
        bottom: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scscm-banner,
    .scscm-modal,
    .scscm-backdrop,
    .scscm-btn,
    .scscm-switch-ui,
    .scscm-switch-ui::after {
        animation: none !important;
        transition: none !important;
    }
}
