:root {
    --ap-brand: #0b6fe6;
    --ap-brand-2: #0196dc;
    --ap-red: #dc2626;

    --ap-bg: #ffffff;
    --ap-surface: #ffffff;
    --ap-surface-2: #ffffff;

    --ap-text: #111827;
    --ap-muted: rgba(17, 24, 39, .62);

    --ap-border: rgba(17, 24, 39, .10);
    --ap-border-2: rgba(17, 24, 39, .08);

    --ap-shadow-sm: 0 6px 14px rgba(17, 24, 39, .06);
    --ap-shadow-md: 0 12px 26px rgba(17, 24, 39, .08);

    --ap-radius: 14px;
    --ap-radius-sm: 12px;
    --ap-pill: 999px;

    --ap-ring: 0 0 0 3px rgba(11, 111, 230, .18);

    --ap-sidebar-w: 268px;
    --ap-topbar-h: 58px;

    --ap-font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, system-ui, sans-serif;
    --ap-font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, system-ui, sans-serif;

    --ap-ease: cubic-bezier(.2, .8, .2, 1);
    --ap-fast: 140ms;
    --ap-med: 220ms;
}

html,
body {
    height: 100%;
    margin: 0
}

.ap-root,
.ap-root * {
    box-sizing: border-box
}

.ap-root {
    font-family: var(--ap-font);
    font-size: clamp(13px, 1.15vw, 14px);
    color: var(--ap-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    background-image:
        linear-gradient(rgba(255, 255, 255, .22), rgba(255, 255, 255, .22)),
        url('../img/main.jpg'),
        url('/assets/img/main.jpg') !important;
    background-color: #f8fafc;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

.ap-root a {
    color: inherit;
    text-decoration: none
}

.ap-topbar .ap-muted {
    color: rgba(17, 24, 39, .55) !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#apCurrentTitle {
    font-weight: 800 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}



.ap-root h1,
.ap-root h2,
.ap-root h3,
.ap-root h4 {
    font-family: var(--ap-font-display);
    letter-spacing: -.01em;
    color: rgba(17, 24, 39, .92);
}

.ap-root h1 {
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.18
}

.ap-root h2 {
    font-weight: 800;
    font-size: 1.12rem;
    line-height: 1.22
}

.ap-root h3 {
    font-weight: 750;
    font-size: 1.02rem;
    line-height: 1.24
}

.ap-root h4 {
    font-weight: 700;
    font-size: .98rem;
    line-height: 1.26
}

.ap-root p {
    line-height: 1.65;
    color: rgba(17, 24, 39, .72)
}

.ap-shell {
    min-height: 100vh;
    display: flex;
    background: transparent
}

.ap-sidebar {
    width: var(--ap-sidebar-w);
    padding: 16px;
    border-right: 1px solid var(--ap-border);
    background: #fff;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: auto;
}

.ap-content {
    flex: 1;
    min-width: 0;
    padding: 18px 18px 34px;
    background: transparent;
}

.ap-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 10px;
    background: #fff;
}

.ap-brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(11, 111, 230, .08);
    border: 1px solid rgba(11, 111, 230, .14);
    color: var(--ap-brand);
    font-weight: 900;
    letter-spacing: -.02em;
}

.ap-brand-title {
    font-weight: 850;
    letter-spacing: -.01em;
    line-height: 1.05;
    font-size: .98rem;
}

.ap-brand-sub {
    color: rgba(17, 24, 39, .55);
    font-size: .82rem;
    margin-top: 2px
}

.ap-sidebar-section {
    margin-top: 14px
}

.ap-sidebar-title {
    color: rgba(17, 24, 39, .55);
    font-weight: 700;
    font-size: .70rem;
    letter-spacing: .10em;
    text-transform: uppercase;
    padding: 8px 10px;
}

.ap-nav {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ap-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8.5px 10px;
    min-height: 44px;
    border-radius: 12px;
    border: 0;
    background: #fff;
    transition: transform var(--ap-fast) var(--ap-ease), box-shadow var(--ap-fast) var(--ap-ease), background var(--ap-fast) var(--ap-ease);
}

.ap-nav-item:hover {
    transform: translateY(-1px);
    box-shadow: var(--ap-shadow-sm);
    background: rgba(11, 111, 230, .04);
}

.ap-nav-item.is-active {
    background: rgba(11, 111, 230, .06);
    box-shadow: none;
}

.ap-nav-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: rgba(17, 24, 39, .03);
    border: 0;
    font-weight: 800;
    flex: 0 0 auto;
    color: rgba(17, 24, 39, .70);
}

.ap-nav-item.is-active .ap-nav-icon {
    background: rgba(255, 215, 0, .16);
    color: var(--ap-brand);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, .38), 0 0 18px rgba(255, 215, 0, .62), 0 10px 22px rgba(17, 24, 39, .12);
}

.ap-nav-item.is-active:hover .ap-nav-icon {
    box-shadow: 0 0 0 2px rgba(255, 215, 0, .46), 0 0 22px rgba(255, 215, 0, .72), 0 12px 26px rgba(17, 24, 39, .14);
}

.ap-nav-text {
    min-width: 0;
    flex: 1
}

.ap-nav-label {
    font-family: var(--ap-font);
    font-weight: 600;
    line-height: 1.18;
    font-size: .88rem;
    color: rgba(17, 24, 39, .78);
}

.ap-nav-desc {
    font-family: var(--ap-font);
    font-weight: 500;
    color: rgba(17, 24, 39, .50);
    font-size: .78rem;
    margin-top: 2px;
    line-height: 1.25;
}

.ap-topbar {
    min-height: var(--ap-topbar-h);
    height: auto;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid var(--ap-border);
    border-radius: var(--ap-radius);
    background: #fff;
    box-shadow: none;
    position: sticky;
    top: 14px;
    z-index: 10;
}

.ap-topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0
}

.ap-title-wrap {
    min-width: 0;
    overflow: hidden;
}

.ap-btn,
.ap-btn-primary,
.ap-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 12px;
    min-height: 44px;
    border-radius: var(--ap-pill);
    border: 1px solid rgba(17, 24, 39, .22);
    background: #fff;
    color: rgba(17, 24, 39, .90);
    font-weight: 750;
    font-size: .90rem;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--ap-fast) var(--ap-ease), color var(--ap-fast) var(--ap-ease), border-color var(--ap-fast) var(--ap-ease);
}

.ap-btn:hover,
.ap-btn-primary:hover,
.ap-btn-ghost:hover {
    background: rgba(17, 24, 39, .92);
    color: #fff;
    border-color: rgba(17, 24, 39, .92);
    text-decoration: none;
}

.ap-btn:active,
.ap-btn-primary:active,
.ap-btn-ghost:active {
    background: rgba(17, 24, 39, .86)
}

.ap-btn:focus-visible,
.ap-btn-primary:focus-visible,
.ap-btn-ghost:focus-visible {
    outline: none;
    box-shadow: var(--ap-ring)
}

.ap-btn,
.ap-btn:link,
.ap-btn:visited,
.ap-btn:hover,
.ap-btn:active,
.ap-btn:focus {
    text-decoration: none !important
}

.ap-icon-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ap-border-2);
    background: #fff;
    box-shadow: none;
    cursor: pointer;
    transition: background var(--ap-fast) var(--ap-ease), border-color var(--ap-fast) var(--ap-ease);
}

.ap-icon-btn:hover {
    background: rgba(11, 111, 230, .04);
    border-color: rgba(11, 111, 230, .22)
}

.ap-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    position: relative
}

.ap-icon.ap-hamburger::before,
.ap-icon.ap-hamburger::after,
.ap-icon.ap-hamburger span {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--ap-text);
    border-radius: 2px;
}

.ap-icon.ap-hamburger span {
    top: 8px
}

.ap-icon.ap-hamburger::before {
    top: 2px
}

.ap-icon.ap-hamburger::after {
    top: 14px
}

.ap-loading {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    z-index: 40;
}

@supports ((-webkit-backdrop-filter:blur(10px)) or (backdrop-filter:blur(10px))) {
    .ap-loading {
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px)
    }
}

.ap-loading-inner {
    padding: 16px 18px;
    border-radius: var(--ap-radius);
    border: 1px solid var(--ap-border);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--ap-shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ap-spinner {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid rgba(15, 23, 42, .12);
    border-top-color: rgba(1, 150, 220, .85);
    animation: apSpin 900ms linear infinite;
}

@keyframes apSpin {
    to {
        transform: rotate(360deg)
    }
}

.ap-card {
    border: 1px solid var(--ap-border);
    border-radius: var(--ap-radius);
    background: var(--ap-surface);
    box-shadow: var(--ap-shadow-sm);
}

.ap-card-body {
    padding: 16px
}

.ap-muted {
    color: var(--ap-muted)
}

.ap-mt-8 {
    margin-top: 8px
}

.ap-mt-12 {
    margin-top: 12px
}

.ap-mt-16 {
    margin-top: 16px
}

.ap-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: var(--ap-pill);
    border: 1px solid var(--ap-border);
    font-weight: 900;
    font-size: .86rem;
}

.ap-badge.bad {
    border-color: rgba(239, 68, 68, .25);
    background: rgba(239, 68, 68, .12);
    color: #991b1b;
}

.ap-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, .18);
    display: none;
    z-index: 55;
}

@media (max-width:1024px) {
    .ap-shell.is-sidebar-open .ap-sidebar-overlay {
        display: block
    }
}

@media (min-width:1025px) {
    .ap-shell.is-sidebar-open .ap-sidebar-overlay {
        display: none !important
    }
}

.ap-bottom-nav {
    position: fixed;
    left: calc(12px + env(safe-area-inset-left));
    right: calc(12px + env(safe-area-inset-right));
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 70;
    border: 1px solid var(--ap-border);
    border-radius: var(--ap-radius);
    background: #fff;
    box-shadow: none;
    padding: 8px;
    display: none;
}

.ap-bottom-nav .ap-bottom-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.ap-bottom-nav .ap-bottom-row::-webkit-scrollbar {
    display: none;
}

.ap-bottom-nav a {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    border-radius: 12px;
    border: 1px solid rgba(17, 24, 39, .08);
    background: #fff;
    font-weight: 750;
    font-size: .82rem;
    color: rgba(17, 24, 39, .86);
    text-decoration: none !important;
    min-width: 92px;
    white-space: nowrap;
}

.ap-bottom-nav a.is-active {
    background: rgba(11, 111, 230, .08);
    border-color: rgba(11, 111, 230, .28);
}

@media (max-width:1024px) {
    .ap-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        transform: translateX(-102%);
        transition: transform var(--ap-med) var(--ap-ease);
        z-index: 60;
        width: var(--ap-sidebar-w);
    }

    .ap-shell.is-sidebar-open .ap-sidebar {
        transform: translateX(0)
    }

    .ap-content {
        padding: 18px 16px 88px
    }

    .ap-bottom-nav {
        display: block
    }
}

.ap-root #apContentArea section {
    margin-bottom: 22px !important
}

.ap-root #apContentArea .section-title {
    margin-bottom: 16px !important
}

.ap-root #apContentArea .section-title h2 {
    line-height: 1.12
}

.ap-root #apContentArea .section-title p {
    line-height: 1.55;
    max-width: 72ch
}

.ap-root #apContentArea .row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 !important;
}

.ap-root #apContentArea .row.g-3 {
    gap: 14px
}

.ap-root #apContentArea .row.g-4 {
    gap: 18px
}

.ap-root #apContentArea [class^="col-"],
.ap-root #apContentArea [class*=" col-"] {
    flex: 1 1 280px;
    min-width: 0;
    padding: 0 !important;
    margin: 0 !important;
}

.ap-root #apContentArea .col-12,
.ap-root #apContentArea .col-lg-12,
.ap-root #apContentArea .col-md-12,
.ap-root #apContentArea .col-sm-12 {
    flex: 1 1 100%
}

.ap-root #apContentArea .surface-card,
.ap-root #apContentArea .ap-card,
.ap-root #apContentArea .icon-box {
    margin-bottom: 16px
}

.ap-root #apContentArea .row .surface-card,
.ap-root #apContentArea .row .ap-card,
.ap-root #apContentArea .row .icon-box {
    margin-bottom: 0 !important
}

@media (max-width:640px) {
    .ap-root #apContentArea .row {
        gap: 12px
    }

    .ap-root #apContentArea [class^="col-"],
    .ap-root #apContentArea [class*=" col-"] {
        flex-basis: 100%
    }
}

.ap-page {
    max-width: 1280px;
    margin: 0 auto
}

.ap-page-head {
    margin-bottom: 16px;
    padding: 14px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(17, 24, 39, .10);
    box-shadow: 0 10px 22px rgba(17, 24, 39, .06);
}

.ap-page-head>*:first-child {
    margin-top: 0 !important
}

.ap-page-head>*:last-child {
    margin-bottom: 0 !important
}

.ap-page-head h1,
.ap-page-head h2,
.ap-page-head h3 {
    margin: 0 0 8px 0
}

.ap-page-head p,
.ap-page-head .ap-meta {
    margin: 0
}

.ap-page-head .ap-kicker {
    margin-bottom: 6px
}

.ap-kicker {
    font-size: .70rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(17, 24, 39, .52);
    font-weight: 700;
    margin-bottom: 6px;
}

.ap-headline {
    font-family: var(--ap-font-display);
    font-weight: 800;
    font-size: 1.02rem;
    color: rgba(17, 24, 39, .90);
    margin: 8px 0 6px;
}

.ap-meta {
    color: rgba(17, 24, 39, .66);
    margin: 0
}

.ap-grid {
    display: grid;
    gap: 16px
}

.ap-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.ap-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.ap-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

@media (max-width:1280px) {
    .ap-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (max-width:1024px) {

    .ap-grid-4,
    .ap-grid-3,
    .ap-grid-2 {
        grid-template-columns: 1fr
    }
}

.ap-card--accent-blue {
    position: relative
}

.ap-card--accent-blue::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(11, 111, 230, 0), rgba(11, 111, 230, .45), rgba(1, 150, 220, .35), rgba(11, 111, 230, 0));
}

.ap-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, .12);
    background: #fff;
    font-weight: 750;
    font-size: .82rem;
    color: rgba(17, 24, 39, .84);
}

.ap-pill--blue {
    border-color: rgba(11, 111, 230, .22);
    background: rgba(11, 111, 230, .05);
    color: rgba(11, 111, 230, .95);
}

.ap-pill--gold {
    border-color: rgba(212, 175, 55, .30);
    background: rgba(212, 175, 55, .14);
    color: rgba(120, 84, 0, .98);
}

.ap-mini-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.ap-mini-list li {
    position: relative;
    padding-left: 14px;
    margin: 7px 0;
    color: rgba(17, 24, 39, .70);
    font-size: .90rem;
    line-height: 1.45;
}

.ap-mini-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(11, 111, 230, .55);
}

.ap-note {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(17, 24, 39, .08);
    color: rgba(17, 24, 39, .62);
    font-size: .90rem;
}

.ap-card-footer {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(17, 24, 39, .08);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ap-card-footer .ap-btn {
    flex: 1 1 auto
}

@media (min-width:1025px) {
    .ap-card-footer .ap-btn {
        flex: 0 0 auto
    }
}

.ap-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.ap-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, .12);
    background: #fff;
    font-weight: 750;
    font-size: .86rem;
    color: rgba(17, 24, 39, .84);
}

.ap-chip:hover {
    background: rgba(17, 24, 39, .04);
    border-color: rgba(17, 24, 39, .20)
}

.ap-chip--red {
    border-color: rgba(220, 38, 38, .22);
    color: rgba(220, 38, 38, .92)
}

.ap-chip--red:hover {
    background: rgba(220, 38, 38, .06);
    border-color: rgba(220, 38, 38, .30)
}

.ap-mini-metric {
    min-width: 160px
}

.ap-mini-metric-k {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(17, 24, 39, .50);
    font-weight: 700
}

.ap-mini-metric-v {
    font-weight: 800;
    font-size: .92rem;
    color: rgba(17, 24, 39, .86);
    margin-top: 3px
}

.ap-steps {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ap-step {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(17, 24, 39, .10);
    background: #fff
}

.ap-step-n {
    font-weight: 850;
    color: rgba(11, 111, 230, .92);
    font-size: .86rem
}

.ap-step-t {
    font-weight: 850;
    font-size: .92rem;
    color: rgba(17, 24, 39, .88);
    margin-top: 4px
}

.ap-step-d {
    color: rgba(17, 24, 39, .62);
    font-size: .90rem;
    margin-top: 3px;
    line-height: 1.45
}

.ap-divider {
    height: 1px;
    background: rgba(17, 24, 39, .08);
    margin: 14px 0
}

.ap-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex-wrap: wrap
}

.ap-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.ap-info-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 10px;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: 12px;
    background: #fff;
}

.ap-info-k {
    flex: 0 0 120px;
    font-weight: 750;
    font-size: .88rem;
    color: rgba(17, 24, 39, .82)
}

.ap-info-v {
    flex: 1 1 auto;
    font-size: .90rem;
    color: rgba(17, 24, 39, .70)
}

.ap-info-v a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px
}

.ap-form {
    margin: 0
}

.ap-form-grid {
    display: grid;
    gap: 12px
}

.ap-form-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

@media (max-width:760px) {
    .ap-form-grid-2 {
        grid-template-columns: 1fr
    }
}

.ap-field {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ap-label {
    font-weight: 750;
    font-size: .88rem;
    color: rgba(17, 24, 39, .82)
}

.ap-help {
    font-size: .84rem;
    color: rgba(17, 24, 39, .55)
}

.ap-input,
.ap-textarea {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    border: 1px solid rgba(17, 24, 39, .14);
    border-radius: 12px;
    background: #fff;
    padding: 10px 10px;
    font-size: .92rem;
    line-height: 1.35;
    color: rgba(17, 24, 39, .86);
    outline: none;
    transition: border-color var(--ap-fast) var(--ap-ease), box-shadow var(--ap-fast) var(--ap-ease), background var(--ap-fast) var(--ap-ease);
}

.ap-textarea {
    resize: vertical;
    min-height: 120px
}

.ap-input::placeholder,
.ap-textarea::placeholder {
    color: rgba(17, 24, 39, .38)
}

.ap-input:focus,
.ap-textarea:focus {
    box-shadow: var(--ap-ring);
    border-color: rgba(17, 24, 39, .35);
    background: #fff
}

button.ap-btn {
    -webkit-appearance: none;
    appearance: none
}

.ap-alert {
    border: 1px solid rgba(17, 24, 39, .12);
    border-radius: 12px;
    background: #fff;
    padding: 12px 12px;
    margin: 0 0 12px;
}

.ap-alert-title {
    font-weight: 800;
    font-size: .90rem;
    color: rgba(17, 24, 39, .88)
}

.ap-alert-msg {
    margin-top: 6px;
    font-size: .90rem;
    color: rgba(17, 24, 39, .70);
    line-height: 1.5
}

.ap-alert.is-success {
    border-color: rgba(11, 111, 230, .22);
    box-shadow: 0 0 0 3px rgba(11, 111, 230, .06)
}

.ap-alert.is-danger {
    border-color: rgba(220, 38, 38, .22);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .06)
}

.ap-details {
    border: 1px solid rgba(17, 24, 39, .10);
    border-radius: 12px;
    background: #fff
}

.ap-details-summary {
    cursor: pointer;
    padding: 12px 12px;
    font-weight: 750;
    color: rgba(17, 24, 39, .86);
    list-style: none
}

.ap-details-summary::-webkit-details-marker {
    display: none
}

.ap-details[open] .ap-details-summary {
    border-bottom: 1px solid rgba(17, 24, 39, .08)
}

.ap-details-body {
    padding: 12px 12px
}

.ap-faq-list {
    display: grid;
    gap: 10px
}

.ap-faq {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(17, 24, 39, .10);
}

.ap-faq-q {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    cursor: pointer;
    user-select: none;
    text-align: left;
    line-height: 1.25;
    font-weight: 700;
    color: rgba(15, 23, 42, .92);
    background: rgba(255, 255, 255, .70);
}

.ap-faq-q::-webkit-details-marker {
    display: none
}

.ap-faq-q::marker {
    content: ""
}

.ap-faq-ico {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 18px;
    color: #0196dc;
    transform: rotate(0deg);
    transition: transform 160ms ease, color 160ms ease;
}

.ap-faq-ico svg {
    width: 18px;
    height: 18px;
    display: block
}

.ap-faq[open] .ap-faq-ico {
    transform: rotate(90deg);
    color: #d4af37
}

.ap-faq[open] .ap-faq-q {
    background: rgba(212, 175, 55, .10)
}

.ap-faq-a {
    padding: 0 14px 14px 42px;
    color: rgba(15, 23, 42, .78);
    line-height: 1.45;
}

.ap-faq-a p:last-child {
    margin-bottom: 0
}

.ap-nav-hr {
    border: 0;
    height: 1px;
    margin: 14px 8px;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0), rgba(17, 24, 39, .10), rgba(11, 111, 230, .16), rgba(220, 38, 38, .12), rgba(17, 24, 39, .10), rgba(17, 24, 39, 0));
}

body.landing-body,
body.landing-body *,
body.landing-body *::before,
body.landing-body *::after {
    box-sizing: border-box;
}

body.landing-body {
    min-height: 100vh;
    margin: 0;
    font-family: var(--ap-font, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
    color: var(--ap-text, #0f172a);
    background: #0b1220;
}

.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 56px;
    padding-inline: calc(18px + env(safe-area-inset-left)) calc(18px + env(safe-area-inset-right));

    background-image:
        linear-gradient(rgba(255, 255, 255, .58), rgba(255, 255, 255, .58)),
        url('../img/main.jpg'),
        url('/assets/img/main.jpg') !important;
    background-color: #f8fafc;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .06);
    z-index: 0;
}

.landing-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(15, 23, 42, .06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, .06) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .22;
    z-index: 0;
}

.landing-container {
    position: relative;
    z-index: 1;
    width: min(1040px, 100%);
    text-align: center;
    margin-inline: auto;
}

.landing-panel {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 30px 28px;
    border-radius: 16px;

    background-image:
        linear-gradient(rgba(255, 255, 255, .88), rgba(255, 255, 255, .88)),
        url('../img/main1.jpg'),
        url('/assets/img/main1.jpg') !important;
    background-color: rgba(255, 255, 255, .92);
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;

    border: 0;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
    overflow: hidden;
    position: relative;
}

.landing-panel::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(11, 111, 230, 0), rgba(11, 111, 230, .28), rgba(1, 150, 220, .24), rgba(11, 111, 230, 0));
    opacity: .85;
}

.landing-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .08);
    pointer-events: none;
}

.landing-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px
}

.landing-logo img {
    max-width: 320px;
    width: min(320px, 78vw);
    height: auto;
    display: block
}

.landing-typed {
    margin: 12px 0 18px;
    font-weight: 650;
    letter-spacing: -.01em;
    line-height: 1.25;
    font-size: clamp(15px, 3.6vw, 20px);
}

.landing-typed .typed {
    color: #0196dc
}

.typed-cursor {
    display: inline-block;
    width: 10px;
    margin-left: 4px;
    color: rgba(1, 150, 220, .85);
    animation: landingBlink 1s step-end infinite;
}

@keyframes landingBlink {

    0%,
    49% {
        opacity: 1
    }

    50%,
    100% {
        opacity: 0
    }
}

.landing-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 8px 0 18px
}

.landing-btn {
    appearance: none;
    border: 0;
    outline: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 5px 12px;
    line-height: 1;
    border-radius: 999px;
    font-weight: 750;
    letter-spacing: .01em;
    box-shadow: 0 10px 22px rgba(2, 6, 23, .16);
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease, background-color 160ms ease;
}

.landing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(2, 6, 23, .18);
    filter: brightness(1.03);
}

.landing-btn:active {
    transform: translateY(-1px);
    filter: brightness(.99);
}

.landing-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(11, 111, 230, .18), 0 14px 28px rgba(2, 6, 23, .18)
}

.landing-btn-primary {
    background: #0196dc;
    color: #fff;
    box-shadow: 0 12px 26px rgba(2, 6, 23, .14);
}

.landing-btn-primary:hover {
    background: #028fe6;
    box-shadow: 0 20px 44px rgba(2, 6, 23, .18);
    filter: none;
}

.landing-btn-primary:active {
    background: #0182cd;
}

.landing-meta {
    margin-top: 8px;
    color: #475569;
    font-size: .95rem;
    line-height: 1.35;
    max-width: 72ch;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width:520px) {
    .landing-panel {
        padding: 22px 18px;
        border-radius: 14px
    }

    .landing-panel::after {
        border-radius: 14px
    }

    .landing-logo img {
        width: min(300px, 84vw)
    }

    .landing-btn {
        min-height: 38px;
        padding: 6px 12px;
        width: 100%;
    }
}

@media (max-width:900px) {
    .landing-hero {
        background-attachment: scroll;
    }
}



@media (max-width:1024px) {
    .ap-sidebar {
        width: min(var(--ap-sidebar-w), 86vw)
    }

    .ap-content {
        padding: 16px 14px 96px
    }

    .ap-topbar {
        top: 10px;
        padding: 10px 10px;
        gap: 10px
    }

    .ap-icon-btn {
        width: 44px;
        height: 44px
    }
}

@media (max-width:640px) {
    .ap-content {
        padding: 14px 12px 102px
    }

    .ap-topbar {
        border-radius: 12px
    }

    .ap-btn,
    .ap-btn-primary,
    .ap-btn-ghost {
        padding: 8px 10px;
        font-size: .88rem
    }

    .ap-card-body {
        padding: 14px
    }

    .ap-page-head {
        padding: 12px;
        border-radius: 14px
    }

    .ap-grid {
        gap: 12px
    }

    .ap-card-footer {
        flex-direction: column
    }

    .ap-card-footer .ap-btn {
        width: 100%
    }

    .ap-info-row {
        flex-direction: column;
        align-items: flex-start
    }

    .ap-info-k {
        flex: 0 0 auto
    }
}

@media (max-width:900px) {
    .ap-root {
        background-attachment: scroll
    }
}

@media (prefers-reduced-motion:reduce) {

    .ap-nav-item,
    .ap-btn,
    .ap-btn-primary,
    .ap-btn-ghost,
    .ap-icon-btn {
        transition: none !important
    }

    .ap-nav-item:hover {
        transform: none
    }
}