/* Extracted from Views/Test/Index.cshtml. */
:root{
  --dn-text-1: rgba(255,255,255,.92);
  --dn-text-2: rgba(255,255,255,.78);
  --dn-text-3: rgba(255,255,255,.62);
  --dn-text-4: rgba(255,255,255,.50);
  --dn-link:   rgba(236, 236, 236, .92);
}


.container[style*="max-width: 980px"]{
  color: var(--dn-text-2);
}


.dn-glass{
  color: var(--dn-text-2);
}


.dn-glass h1,
.dn-glass h2,
.dn-glass h3,
.dn-glass .h3,
.dn-glass .h5{
  color: var(--dn-text-1);
}


.dn-kicker{ color: var(--dn-text-2); }
.dn-mini{ color: var(--dn-text-3); }


.dn-muted{ color: var(--dn-text-3) !important; }

.dn-glass p,
.dn-glass li,
.dn-glass .small,
.dn-glass span{
  color: inherit;
}


.accordion-button{
  color: var(--dn-text-1) !important;
}
.accordion-button:focus{
  box-shadow: none;
}
.accordion-body{
  color: var(--dn-text-3);
}


.dn-pill{
  color: var(--dn-text-1);
}
.dn-pill i{
  opacity: .95;
}


.dn-icon-badge i{
  color: var(--dn-text-1);
  opacity: .9;
}

    .dn-glass {
        background: rgba(47, 47, 47, .42) !important;
        border: 1px solid rgba(255,255,255,.10);
        box-shadow: 0 14px 46px rgba(0,0,0,.28);
        border-radius: 18px;
        backdrop-filter: blur(10px);
    }

    .dn-hero {
        position: relative;
        overflow: hidden;
    }

    .dn-hero:before {
        content:"";
        position:absolute;
        inset:-2px;
        background:
            radial-gradient(900px 420px at 10% 10%, rgba(16, 163, 127, .18), transparent 60%),
            radial-gradient(800px 420px at 90% 20%, rgba(16, 163, 127, .12), transparent 60%),
            radial-gradient(900px 520px at 50% 110%, rgba(16,163,127,.10), transparent 60%);
        pointer-events:none;
        filter: blur(0px);
    }

    .dn-hero-inner { position: relative; z-index: 1; }

    .dn-pill {
        display:inline-flex;
        align-items:center;
        gap:.5rem;
        padding:.32rem .65rem;
        border-radius: 999px;
        font-size: .78rem;
        line-height: 1;
        background: rgba(16, 163, 127, .10);
        border: 1px solid rgba(16, 163, 127, .28);
        color: rgba(236, 236, 236, .95);
        user-select:none;
        white-space: nowrap;
    }

    .dn-icon-badge {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        display:flex;
        align-items:center;
        justify-content:center;
        background: rgba(255,255,255,.05);
        border: 1px solid rgba(255,255,255,.10);
        box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
        flex: 0 0 auto;
    }

    .dn-feature {
        height: 100%;
        transition: transform .18s ease, border-color .18s ease;
    }
    .dn-feature:hover {
        transform: translateY(-2px);
        border-color: rgba(16, 163, 127, .26);
    }

    .dn-kicker { opacity:.9; font-size:.95rem; }
    .dn-muted { opacity:.8; }

    .dn-list {
        margin: 0;
        padding-left: 1.05rem;
    }
    .dn-list li { margin: .28rem 0; }

    .dn-cta {
        display:flex;
        flex-wrap: wrap;
        gap: .6rem;
        align-items:center;
    }

    .dn-mini {
        font-size: .92rem;
        opacity:.9;
    }


    .dn-hero-app-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
    align-items: center;
    gap: 24px;
}

.dn-hero-main {
    min-width: 0;
}

.dn-hero-app-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 210px;
    padding: 20px;
    border-radius: 24px;
    color: var(--dn-text) !important;
    background:
        radial-gradient(420px 180px at 20% 0%, rgba(16, 163, 127, .22), transparent 62%),
        radial-gradient(420px 200px at 100% 100%, rgba(16, 163, 127, .20), transparent 62%),
        rgba(47, 47, 47, .34);
    border: 1px solid rgba(16, 163, 127, .30);
    box-shadow:
        0 22px 55px rgba(0,0,0,.30),
        inset 0 0 0 1px rgba(255,255,255,.03);
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        background-color .18s ease;
}

.dn-hero-app-card::before {
    content: "";
    position: absolute;
    inset: -40% -30% auto auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(16, 163, 127, .16);
    filter: blur(28px);
    pointer-events: none;
}


.dn-hero-app-card:hover {
    transform: translateY(-3px);
    color: #fff !important;
    border-color: rgba(16, 163, 127, .52);
    box-shadow:
        0 28px 68px rgba(0,0,0,.36),
        0 0 0 1px rgba(255,255,255,.04) inset;
}

.dn-hero-app-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    margin-bottom: 16px;
    border-radius: 999px;
    color: var(--dn-accent-text);
    background: rgba(16, 163, 127, .10);
    border: 1px solid rgba(16, 163, 127, .26);
    font-size: .82rem;
    font-weight: 850;
}

.dn-hero-app-icon {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 18px;
    color: #fff;
    font-size: 1.28rem;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.22), transparent 50%),
        linear-gradient(135deg, rgba(16, 163, 127, .90), rgba(16, 163, 127, .72));
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 16px 34px rgba(16, 163, 127, .14);
}

.dn-hero-app-title {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--dn-white);
    font-size: 1.28rem;
    font-weight: 950;
    letter-spacing: -.03em;
    margin-bottom: 6px;
}

.dn-hero-app-text {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--dn-text-subtle);
    font-size: .94rem;
    line-height: 1.48;
    max-width: 250px;
    margin-bottom: 18px;
}

.dn-hero-app-action {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--dn-accent-text);
    background: rgba(16, 163, 127, .11);
    border: 1px solid rgba(16, 163, 127, .25);
    font-size: .88rem;
    font-weight: 900;
}

.dn-hero-app-card:hover .dn-hero-app-action {
    background: rgba(16, 163, 127, .17);
    border-color: rgba(16, 163, 127, .40);
}

@media (max-width: 991.98px) {
    .dn-hero-app-layout {
        grid-template-columns: 1fr;
    }

    .dn-hero-app-card {
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    .dn-hero-app-card {
        padding: 17px;
        border-radius: 20px;
    }

    .dn-hero-app-text {
        max-width: 100%;
    }
}
    .dn-hero-app-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .dn-hero-app-logo {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .dn-hero-app-icon {
        overflow: hidden;
    }

    @media (max-width: 768px) {
        .dn-hero-app-grid {
            grid-template-columns: 1fr;
        }
    }

    .dn-hero-app-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
        gap: 32px;
        align-items: center;
    }

    .dn-hero-app-grid {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        align-content: center;
    }

    .dn-hero-app-card {
        position: relative;
        display: grid;
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 14px;
        align-items: center;
        min-height: 150px;
        padding: 18px;
        border-radius: 24px;
        color: rgba(255, 255, 255, .88);
        background: radial-gradient(circle at top left, rgba(16, 163, 127, .18), transparent 42%), linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
        border: 1px solid rgba(16, 163, 127, .32);
        box-shadow: 0 18px 45px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .08);
        transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
    }

        .dn-hero-app-card:hover {
            transform: translateY(-3px);
            color: #fff;
            border-color: rgba(16, 163, 127, .62);
            background: radial-gradient(circle at top left, rgba(16, 163, 127, .26), transparent 44%), linear-gradient(135deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .035));
            box-shadow: 0 24px 60px rgba(0, 0, 0, .36), 0 0 0 1px rgba(16, 163, 127, .12), inset 0 1px 0 rgba(255, 255, 255, .1);
        }

    .dn-hero-app-badge {
        position: absolute;
        top: 14px;
        right: 14px;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        width: auto;
        max-width: calc(100% - 28px);
        padding: 7px 11px;
        border-radius: 999px;
        font-size: .76rem;
        font-weight: 800;
        line-height: 1;
        white-space: nowrap;
        color: rgba(255, 255, 255, .86);
        background: rgba(16, 163, 127, .14);
        border: 1px solid rgba(16, 163, 127, .34);
    }

    .dn-hero-app-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        display: grid;
        place-items: center;
        overflow: hidden;
        background: radial-gradient(circle at 30% 20%, rgba(16, 163, 127, .26), transparent 45%), rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .12);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
    }

    .dn-hero-app-logo {
        width: 38px;
        height: 38px;
        object-fit: contain;
        display: block;
    }

    .dn-hero-app-content {
        display: flex;
        flex-direction: column;
        min-width: 0;
        padding-top: 24px;
    }

    .dn-hero-app-title {
        display: block;
        margin-bottom: 5px;
        font-size: 1.08rem;
        font-weight: 900;
        line-height: 1.22;
        letter-spacing: -.02em;
    }

    .dn-hero-app-text {
        display: block;
        margin-bottom: 12px;
        font-size: .9rem;
        line-height: 1.45;
        color: rgba(255, 255, 255, .72);
    }

    .dn-hero-app-action {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        align-self: flex-start;
        padding: 9px 12px;
        border-radius: 999px;
        font-size: .82rem;
        font-weight: 850;
        line-height: 1;
        white-space: nowrap;
        color: rgba(255, 255, 255, .9);
        background: rgba(16, 163, 127, .14);
        border: 1px solid rgba(16, 163, 127, .28);
    }

    .dn-hero-app-card:hover .dn-hero-app-action {
        background: rgba(16, 163, 127, .24);
        border-color: rgba(16, 163, 127, .5);
    }

    @media (max-width: 991.98px) {
        .dn-hero-app-layout {
            grid-template-columns: 1fr;
        }

        .dn-hero-app-grid {
            margin-top: 10px;
        }
    }

    @media (max-width: 575.98px) {
        .dn-hero-app-card {
            grid-template-columns: 50px minmax(0, 1fr);
            min-height: auto;
            padding: 16px;
            border-radius: 20px;
        }

        .dn-hero-app-icon {
            width: 50px;
            height: 50px;
            border-radius: 16px;
        }

        .dn-hero-app-logo {
            width: 34px;
            height: 34px;
        }

        .dn-hero-app-badge {
            position: static;
            grid-column: 1 / -1;
            justify-self: flex-start;
            margin-bottom: 2px;
        }

        .dn-hero-app-content {
            padding-top: 0;
        }

        .dn-hero-app-action {
            white-space: normal;
        }
    }
