:root {

/* =====================================================
   FINORA — MASTER BRAND PALETTE
   MAGENTA • GOLD • WHITE • DARK
   ===================================================== */

--bg-dark: #0B0A0F;
--bg-dark-2: #121116;
--bg-dark-3: #18141A;

--bg-pink: #190912;
--bg-pink-2: #230A17;
--bg-pink-3: #2D0B1D;

--card: #171218;
--card-light: #211820;

--pink: #D100FF;
--pink-light: #E044FF;
--pink-soft: #B500E6;
--pink-deep: #9400BF;
--pink-glow: #F06AFF;

--gold: #C99A22;
--gold-deep: #A9790F;
--gold-light: #D9AE3A;
--gold-rich: #E0B94A;

--cream: #F1DFB0;
--cream-light: #F6E9C9;

--white: #FFFFFF;
--text: #FFFFFF;
--muted: #A9A5AD;

--dark-text: #0B0A0F;

--border: rgba(209, 0, 255, 0.20);
--border-strong: rgba(209, 0, 255, 0.32);

--gold-border: rgba(201, 154, 34, 0.28);

--shadow:
    0 18px 45px
    rgba(0, 0, 0, 0.55);

--radius-lg: 24px;
--radius-md: 18px;
--radius-sm: 14px;

--container: 1180px;
}

/* =========================================================
RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        radial-gradient(
            circle at top left,
            rgba(194, 24, 91, 0.14),
            transparent 32%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(201, 154, 34, 0.06),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            #170911 0%,
            #0B0A0F 52%,
            #070609 100%
        );

    color: var(--text);

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

svg {
    display: block;
}

/* =========================================================
MAIN SHELL
========================================================= */

.dashboard-shell {
    min-height: 100vh;
    padding-bottom: 110px;
}

.dashboard-container {
    width:
        min(
            calc(100% - 32px),
            var(--container)
        );

    margin: 0 auto;
}

/* =========================================================
HEADER
========================================================= */

.dashboard-header {
    position: relative;
    z-index: 50;

    background:
        linear-gradient(
            180deg,
            rgba(18, 5, 12, 0.94),
            rgba(25, 7, 16, 0.90)
        );

    border-bottom:
        1px solid
        rgba(209, 0, 255, 0.20);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.top-header {
    min-height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

/* =========================================================
FINORA BRAND
========================================================= */

.finora-brand {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    color: var(--white);

    min-width: 0;
}

.finora-logo-mark {
    width: 47px;
    height: 54px;

    flex: 0 0 auto;

    filter:
        drop-shadow(
            0 5px 14px
            rgba(209, 0, 255, 0.28)
        );
}

.finora-brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    line-height: 1;
}

.finora-name {
    display: flex;
    align-items: baseline;

    gap: 0;

    font-family:
        "Times New Roman",
        Times,
        serif;

    font-size:
        clamp(38px, 5vw, 58px);

    font-weight: 700;

    letter-spacing: -2px;

    line-height: 0.92;

    white-space: nowrap;
}

.finora-fin {
    color: #FFFFFF;
}

.finora-ora {
    color: var(--gold);
}

.finora-tagline {
    margin-top: 7px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

    color: var(--pink);

    white-space: nowrap;
}

/* =========================================================
HEADER ACTIONS
========================================================= */

.header-actions {
    position: absolute;

    right: 0;

    display: flex;
    align-items: center;

    gap: 10px;
}

.profile-button {
    display: none !important;
}

.notification-button {
    position: relative;

    width: 48px;
    height: 48px;

    border:
        1px solid
        rgba(209, 0, 255, 0.30);

    border-radius: 50%;

    background:
        rgba(0, 0, 0, 0.32);

    color: var(--pink);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.notification-button:hover {
    transform: translateY(-2px);

    background:
        rgba(209, 0, 255, 0.12);
}

.header-icon {
    width: 23px;
    height: 23px;
}

.notification-count {
    position: absolute;

    top: -3px;
    right: -2px;

    min-width: 19px;
    height: 19px;

    padding: 0 5px;

    border-radius: 999px;

    background: var(--pink);

    color: #FFFFFF;

    font-size: 10px;

    font-weight: 800;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        2px solid
        var(--bg-dark);
}

/* =========================================================
WELCOME
========================================================= */

.welcome-section {
    padding: 42px 0 25px;
}

.welcome-kicker,
.section-kicker {
    color: var(--pink);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;

    margin-bottom: 9px;
}

.welcome-section h1 {
    font-size:
        clamp(29px, 4vw, 46px);

    line-height: 1.1;

    font-weight: 800;

    color: #FFFFFF;
}

.welcome-section h1 span {
    color: var(--pink);
}

.welcome-section p {
    margin-top: 10px;

    color: var(--muted);

    font-size: 15px;
}

/* =========================================================
MAIN BANNER CAROUSEL
========================================================= */

.banner-section {
    position: relative;

    width: 100%;

    margin-bottom: 34px;

    overflow: hidden;

    isolation: isolate;
}

.banner-track {
    display: flex;

    flex-direction: row;

    flex-wrap: nowrap;

    width: 100%;

    margin: 0;
    padding: 0;

    gap: 0;

    transform:
        translate3d(0, 0, 0);

    transition:
        transform 0.65s
        cubic-bezier(
            0.22,
            0.61,
            0.36,
            1
        );

    will-change: transform;

    touch-action: pan-y;
}

/* =========================================================
INDIVIDUAL BANNER
========================================================= */

.dashboard-banner {
    position: relative;

    flex:
        0 0 100%;

    width: 100%;

    min-width: 100%;
    max-width: 100%;

    height: 285px;
    min-height: 285px;

    margin: 0;
    padding: 0;

    overflow: hidden;

    display: flex;
    align-items: stretch;

    border-radius: var(--radius-lg);

    border:
        1px solid
        rgba(
            201,
            154,
            34,
            0.26
        );

    box-shadow: var(--shadow);

    isolation: isolate;

    flex-shrink: 0;

    /*
     * Keeps the banner rendering as one solid surface.
     */
    transform: translateZ(0);

    backface-visibility: hidden;
}

/* =========================================================
BANNER BACKGROUND
========================================================= */

.dashboard-banner::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(
                209,
                0,
                255,
                0.08
            ),
            transparent 38%
        );
}

/* =========================================================
BANNER BACKGROUNDS
========================================================= */

.banner-invest {
    background:
        linear-gradient(
            105deg,
            #16060F 0%,
            #3A0A20 48%,
            #65102F 100%
        );
}

.banner-wealth {
    background:
        linear-gradient(
            105deg,
            #17070F 0%,
            #3C0B21 48%,
            #68112F 100%
        );
}

.banner-plans {
    background:
        linear-gradient(
            105deg,
            #14050D 0%,
            #36091D 50%,
            #5F0F2C 100%
        );
}

.banner-future {
    background:
        linear-gradient(
            105deg,
            #18060F 0%,
            #400B22 50%,
            #69112F 100%
        );
}

.banner-community {
    background:
        linear-gradient(
            105deg,
            #15060E 0%,
            #390A20 50%,
            #64102E 100%
        );
}

/* =========================================================
BANNER CONTENT
TEXT REMAINS ON TOP OF IMAGE
========================================================= */

.banner-content {
    position: relative;

    z-index: 5;

    width: 56%;

    min-width: 0;

    padding:
        30px
        28px
        28px
        36px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    flex-shrink: 0;
}

/* =========================================================
BANNER LABEL
========================================================= */

.banner-label {
    color: var(--gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

/* =========================================================
BANNER HEADING
========================================================= */

.banner-content h2 {
    font-size:
        clamp(26px, 3.4vw, 43px);

    line-height: 1.04;

    font-weight: 800;

    color: #FFFFFF;

    max-width: 470px;
}

.banner-content h2 span {
    color: var(--pink);
}

/* =========================================================
BANNER SUBTITLE
========================================================= */

.banner-subtitle {
    margin-top: 10px;

    color: var(--cream);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.7px;
}

/* =========================================================
BANNER DESCRIPTION
========================================================= */

.banner-content p {
    max-width: 450px;

    margin-top: 9px;

    color:
        rgba(
            255,
            255,
            255,
            0.76
        );

    font-size: 12px;

    line-height: 1.5;
}

/* =========================================================
BANNER BUTTON
========================================================= */

.banner-button {
    margin-top: 16px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding:
        10px
        16px;

    border-radius: 999px;

    background: var(--pink);

    color: #FFFFFF;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.8px;

    box-shadow:
        0 9px 22px
        rgba(0, 0, 0, 0.40);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.banner-button:hover {
    transform: translateY(-2px);

    background: var(--pink-light);
}

.banner-button span {
    font-size: 17px;

    line-height: 0;
}

/* =========================================================
MAIN BANNER ARTWORK
FULL-BANNER IMAGE LAYER
========================================================= */

.banner-artwork {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    z-index: 1;

    pointer-events: none;

    display: block;

    /*
     * Force the artwork layer to occupy the
     * complete banner surface.
     */
    transform: translateZ(0);

    backface-visibility: hidden;
}

/* =========================================================
FULL BANNER IMAGE
========================================================= */

.banner-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    min-width: 100%;
    min-height: 100%;

    max-width: none;
    max-height: none;

    display: block;

    /*
     * COVER makes the image fill the ENTIRE banner.
     * There will be no empty image box on the right.
     */
    object-fit: cover;

    object-position: center center;

    opacity: 1;

    /*
     * Do NOT blur or artificially sharpen the image.
     * Keeping the source image untouched gives the
     * cleanest possible rendering.
     */
    filter: none;

    /*
     * Helps prevent rendering artifacts during
     * carousel movement.
     */
    transform: translateZ(0);

    backface-visibility: hidden;

    transition:
        opacity 0.4s ease;
}

/* =========================================================
IMAGE OVERLAY
TEXT REMAINS CLEARLY VISIBLE
========================================================= */

.banner-artwork::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(11, 5, 10, 0.82) 0%,
            rgba(11, 5, 10, 0.62) 22%,
            rgba(11, 5, 10, 0.34) 42%,
            rgba(11, 5, 10, 0.12) 66%,
            rgba(11, 5, 10, 0.02) 84%,
            rgba(11, 5, 10, 0.00) 100%
        );

    pointer-events: none;
}

/* =========================================================
SUBTLE TOP/BOTTOM IMAGE BLEND
========================================================= */

.banner-artwork::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 3;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.06) 0%,
            rgba(0, 0, 0, 0.00) 30%,
            rgba(0, 0, 0, 0.07) 100%
        );

    pointer-events: none;
}

/* =========================================================
BANNER INDICATORS
========================================================= */

.banner-indicators {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 7px;

    margin-top: 13px;
}

.banner-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            0.25
        );

    cursor: pointer;

    transition:
        width 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.banner-dot:hover {
    transform: scale(1.15);

    background:
        rgba(
            255,
            255,
            255,
            0.50
        );
}

.banner-dot.active {
    width: 25px;

    border-radius: 999px;

    background: var(--pink);
}

/* =========================================================
FINANCIAL OVERVIEW
========================================================= */

.financial-overview {
    display: grid;

    grid-template-columns:
        minmax(280px, 1.05fr)
        minmax(0, 2fr);

    gap: 18px;

    margin-bottom: 40px;
}

.wallet-card {
    padding: 25px;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            #3A0A20,
            #10070C
        );

    border:
        1px solid var(--border);

    box-shadow: var(--shadow);
}

.wallet-header {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 15px;
}

.small-label,
.summary-label {
    color: var(--gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.6px;
}

.wallet-card h2 {
    margin-top: 8px;

    color: #FFFFFF;

    font-size:
        clamp(27px, 3vw, 38px);

    line-height: 1;
}

.wallet-card p {
    margin-top: 8px;

    color: var(--muted);

    font-size: 12px;
}

.wallet-icon {
    width: 54px;
    height: 54px;

    flex: 0 0 auto;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--pink);

    background:
        rgba(
            209,
            0,
            255,
            0.12
        );

    border:
        1px solid
        rgba(
            209,
            0,
            255,
            0.30
        );

    box-shadow:
        0 0 18px
        rgba(
            209,
            0,
            255,
            0.08
        );
}

.wallet-icon svg {
    width: 30px;
    height: 30px;
}

.wallet-actions {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10px;

    margin-top: 25px;
}

.wallet-deposit-button,
.wallet-withdraw-button {
    min-height: 43px;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}

.wallet-deposit-button {
    background: var(--pink);

    color: #FFFFFF;
}

.wallet-withdraw-button {
    background:
        rgba(
            0,
            0,
            0,
            0.30
        );

    border:
        1px solid
        rgba(
            209,
            0,
            255,
            0.32
        );

    color: var(--pink);
}

/* =========================================================
FINANCIAL SUMMARY
========================================================= */

.financial-summary {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 14px;
}

.summary-card {
    min-height: 116px;

    padding: 19px;

    display: flex;

    align-items: center;

    gap: 14px;

    border-radius: var(--radius-md);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(0, 0, 0, 0.32)
        );

    border:
        1px solid var(--border);

    box-shadow:
        0 10px 30px
        rgba(
            0,
            0,
            0,
            0.32
        );
}

.summary-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 auto;

    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(
            209,
            0,
            255,
            0.12
        );

    color: var(--pink);

    border:
        1px solid
        rgba(
            209,
            0,
            255,
            0.28
        );
}

.summary-icon svg {
    width: 27px;
    height: 27px;
}

.summary-card strong {
    display: block;

    margin-top: 6px;

    color: #FFFFFF;

    font-size: 19px;

    line-height: 1.1;
}

.summary-card small {
    display: block;

    margin-top: 6px;

    color: var(--muted);

    font-size: 10px;
}

/* =========================================================
SECTION HEADERS
========================================================= */

.section-row {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 18px;
}

.section-row h2 {
    color: #FFFFFF;

    font-size:
        clamp(23px, 3vw, 31px);

    line-height: 1.1;
}

.section-helper {
    color: var(--muted);

    font-size: 11px;
}

/* =========================================================
QUICK ACTIONS
========================================================= */

.quick-actions-section {
    margin-bottom: 42px;
}

.quick-actions {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 15px;
}

.quick-action {
    min-height: 155px;

    padding: 22px 18px;

    border-radius: var(--radius-md);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(0, 0, 0, 0.32)
        );

    border:
        1px solid var(--border);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    transition:
        transform 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease;
}

.quick-action:hover {
    transform: translateY(-4px);

    background:
        linear-gradient(
            145deg,
            rgba(
                209,
                0,
                255,
                0.14
            ),
            rgba(
                0,
                0,
                0,
                0.34
            )
        );

    border-color:
        rgba(
            209,
            0,
            255,
            0.42
        );
}

.quick-action-icon {
    width: 65px;
    height: 65px;

    margin-bottom: 13px;

    border-radius: 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(
            209,
            0,
            255,
            0.13
        );

    border:
        1px solid
        rgba(
            209,
            0,
            255,
            0.30
        );

    color: var(--pink);
}

.quick-action-icon svg {
    width: 38px;
    height: 38px;
}

.quick-action strong {
    color: #FFFFFF;

    font-size: 14px;

    font-weight: 800;
}

.quick-action small {
    margin-top: 5px;

    color: var(--muted);

    font-size: 10px;
}

/* =========================================================
PREMIUM BANNER
FULL IMAGE BACKGROUND
========================================================= */

.premium-section {
    margin-bottom: 42px;
}

.premium-banner {
    min-height: 240px;

    position: relative;

    overflow: hidden;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            105deg,
            #15060D 0%,
            #3A0A20 48%,
            #5E102C 100%
        );

    border:
        1px solid var(--gold-border);

    box-shadow: var(--shadow);

    display: flex;

    align-items: center;

    isolation: isolate;

    transform: translateZ(0);

    backface-visibility: hidden;
}

.premium-content {
    position: relative;

    z-index: 5;

    width: 57%;

    padding: 30px 35px;
}

.premium-badge {
    display: inline-flex;

    padding: 6px 10px;

    border-radius: 999px;

    background:
        rgba(
            201,
            154,
            34,
            0.13
        );

    color: var(--gold-light);

    border:
        1px solid
        rgba(
            201,
            154,
            34,
            0.30
        );

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.premium-content h2 {
    margin-top: 12px;

    color: #FFFFFF;

    font-size:
        clamp(26px, 4vw, 42px);

    line-height: 1.05;
}

.premium-content h2 span {
    color: var(--pink);
}

.premium-content p {
    margin-top: 9px;

    color: var(--muted);

    font-size: 12px;
}

.premium-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 16px;

    padding: 10px 16px;

    border-radius: 999px;

    background: var(--pink);

    color: #FFFFFF;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.7px;
}

/* =========================================================
PREMIUM ARTWORK — FULL AREA
========================================================= */

.premium-artwork {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    z-index: 1;

    pointer-events: none;

    transform: translateZ(0);

    backface-visibility: hidden;
}

.premium-banner-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    min-width: 100%;
    min-height: 100%;

    max-width: none;
    max-height: none;

    display: block;

    /*
     * FULL COVER.
     */
    object-fit: cover;

    object-position: center center;

    filter: none;

    transform: translateZ(0);

    backface-visibility: hidden;
}

/* =========================================================
PREMIUM IMAGE OVERLAY
TEXT STAYS ABOVE IMAGE
========================================================= */

.premium-artwork::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(21, 6, 13, 0.88) 0%,
            rgba(21, 6, 13, 0.68) 20%,
            rgba(21, 6, 13, 0.38) 42%,
            rgba(21, 6, 13, 0.14) 65%,
            rgba(21, 6, 13, 0.00) 100%
        );

    pointer-events: none;
}

/* =========================================================
INVESTMENT OVERVIEW
========================================================= */

.investment-overview-section {
    margin-bottom: 42px;
}

.overview-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 15px;
}

.overview-card {
    padding: 21px;

    min-height: 145px;

    display: flex;

    align-items: center;

    gap: 16px;

    border-radius: var(--radius-md);

    background:
        linear-gradient(
            145deg,
            rgba(
                255,
                255,
                255,
                0.045
            ),
            rgba(
                0,
                0,
                0,
                0.32
            )
        );

    border:
        1px solid var(--border);
}

.overview-icon {
    width: 56px;
    height: 56px;

    flex: 0 0 auto;

    border-radius: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(
            209,
            0,
            255,
            0.13
        );

    color: var(--pink);

    border:
        1px solid
        rgba(
            209,
            0,
            255,
            0.28
        );
}

.overview-icon svg {
    width: 31px;
    height: 31px;
}

.overview-label {
    color: var(--gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.overview-title {
    margin-top: 5px;

    color: var(--muted);

    font-size: 10px;

    font-weight: 700;
}

.overview-card strong {
    display: block;

    margin-top: 8px;

    color: #FFFFFF;

    font-size: 20px;
}

/* =========================================================
COMMUNITY
========================================================= */

.community-section {
    margin-bottom: 42px;
}

.community-grid {
    display: grid;

    grid-template-columns: 1fr;
}

.community-card {
    min-height: 100px;

    padding: 18px 22px;

    display: flex;

    align-items: center;

    gap: 17px;

    border-radius: var(--radius-md);

    background:
        linear-gradient(
            100deg,
            rgba(
                209,
                0,
                255,
                0.10
            ),
            rgba(
                0,
                0,
                0,
                0.30
            )
        );

    border:
        1px solid var(--border);

    transition:
        transform 0.2s ease;
}

.community-card:hover {
    transform: translateY(-3px);
}

.community-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 auto;

    border-radius: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;

    color: #FFFFFF;
}

.community-icon svg {
    width: 32px;
    height: 32px;
}

.community-label {
    color: var(--gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.community-card strong {
    display: block;

    margin-top: 4px;

    color: #FFFFFF;

    font-size: 15px;
}

.community-card small {
    display: block;

    margin-top: 5px;

    color: var(--muted);

    font-size: 10px;
}

.community-arrow {
    margin-left: auto;

    color: var(--pink);

    font-size: 25px;
}

/* =========================================================
RECENT TRANSACTIONS
========================================================= */

.activity-section {
    margin-bottom: 35px;
}

.view-all {
    color: var(--gold-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}

.activity-card {
    border-radius: var(--radius-md);

    background:
        rgba(
            0,
            0,
            0,
            0.28
        );

    border:
        1px solid var(--border);

    overflow: hidden;
}

.activity-header {
    padding: 14px 18px;

    border-bottom:
        1px solid
        rgba(
            209,
            0,
            255,
            0.15
        );

    color: var(--gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.transaction-list {
    min-height: 170px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.empty-transactions {
    text-align: center;

    color: var(--muted);
}

.empty-transactions svg {
    width: 42px;
    height: 42px;

    margin:
        0 auto 10px;

    color: var(--pink);
}

.empty-transactions p {
    font-size: 12px;
}
/* =========================================================
FINORA FOOTER
========================================================= */

.dashboard-footer {
    margin-top: 34px;

    padding:
        28px
        15px
        24px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.055
        );

    text-align: center;
}

.dashboard-footer .footer-brand {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 0;

    margin: 0;
    padding: 0;

    font-family:
        "Times New Roman",
        Times,
        serif;

    font-size: 35px;

    font-weight: 700;

    letter-spacing: -2px;

    line-height: 1;
}

.dashboard-footer .footer-brand .fin,
.dashboard-footer .footer-brand .ora {
    display: inline;

    margin: 0;
    padding: 0;

    letter-spacing: -2px;
}

.dashboard-footer .footer-brand .fin {
    color: var(--white);
}

.dashboard-footer .footer-brand .ora {
    color: var(--gold-light);
}

.dashboard-footer .footer-tagline {
    margin-top: 6px;

    color: var(--pink);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.8px;

    line-height: 1;
}

.dashboard-footer .footer-text {
    max-width: 320px;

    margin:
        12px
        auto
        0;

    color: var(--muted);

    font-size: 9px;

    line-height: 1.6;
}

.dashboard-footer .footer-copy {
    margin-top: 10px;

    color: var(--muted);

    font-size: 9px;
}

/* =========================================================
BOTTOM NAVIGATION
========================================================= */

.bottom-navigation {
    position: fixed;

    z-index: 100;

    left: 50%;
    bottom: 14px;

    transform:
        translateX(-50%);

    width:
        min(
            calc(100% - 22px),
            650px
        );

    min-height: 70px;

    padding:
        8px 10px;

    display: grid;

    grid-template-columns:
        repeat(
            5,
            1fr
        );

    gap: 5px;

    background:
        rgba(
            13,
            5,
            10,
            0.96
        );

    border:
        1px solid
        rgba(
            209,
            0,
            255,
            0.28
        );

    border-radius: 22px;

    box-shadow:
        0 18px 45px
        rgba(
            0,
            0,
            0,
            0.65
        );

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);
}

.bottom-nav-item {
    min-width: 0;

    padding:
        8px 4px;

    border-radius: 15px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

    color:
        rgba(
            255,
            255,
            255,
            0.58
        );

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.bottom-nav-item svg {
    width: 25px;
    height: 25px;

    color: currentColor;
}

.bottom-nav-item span {
    font-size: 10px;

    font-weight: 700;

    white-space: nowrap;
}

.bottom-nav-item.active {
    background:
        rgba(
            209,
            0,
            255,
            0.17
        );

    color: var(--pink);

    box-shadow:
        inset 0 0 0 1px
        rgba(
            209,
            0,
            255,
            0.14
        );
}

.bottom-nav-item:hover {
    color: var(--pink-light);

    transform: translateY(-1px);
}

/* =========================================================
TABLET
========================================================= */

@media (max-width: 900px) {

    .financial-overview {
        grid-template-columns: 1fr;
    }

    .dashboard-banner {
        height: 265px;
        min-height: 265px;
    }

    .banner-content {
        width: 60%;

        padding:
            27px
            22px
            27px
            28px;
    }

    /* =====================================================
       FULL IMAGE — TABLET
       ===================================================== */

    .banner-artwork {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        z-index: 1;
    }

    .banner-image {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        min-width: 100%;
        min-height: 100%;

        max-width: none;
        max-height: none;

        object-fit: cover;

        object-position: center center;

        opacity: 1;

        filter: none;
    }

    .banner-artwork::before {
        background:
            linear-gradient(
                90deg,
                rgba(11, 5, 10, 0.82) 0%,
                rgba(11, 5, 10, 0.62) 22%,
                rgba(11, 5, 10, 0.34) 42%,
                rgba(11, 5, 10, 0.12) 66%,
                rgba(11, 5, 10, 0.02) 84%,
                rgba(11, 5, 10, 0.00) 100%
            );
    }

    /* =====================================================
       PREMIUM — TABLET
       ===================================================== */

    .premium-artwork {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;
    }

    .premium-banner-image {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        min-width: 100%;
        min-height: 100%;

        max-width: none;
        max-height: none;

        object-fit: cover;

        object-position: center center;

        filter: none;
    }
}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 650px) {

    .dashboard-container {
        width:
            min(
                calc(100% - 22px),
                var(--container)
            );
    }

    .dashboard-shell {
        padding-bottom: 100px;
    }

    /* =====================================================
       HEADER
       ===================================================== */

    .top-header {
        min-height: 92px;
    }

    .header-actions {
        right: 0;
    }

    .notification-button {
        width: 41px;
        height: 41px;
    }

    .header-icon {
        width: 20px;
        height: 20px;
    }

    .finora-brand {
        gap: 6px;

        transform:
            translateX(-10px);
    }

   

    .finora-name {
        font-family:
            "Times New Roman",
            Times,
            serif;

        font-size: 39px;

        letter-spacing: -1.8px;
    }

    .finora-tagline {
        font-size: 7px;

        letter-spacing: 2px;

        margin-top: 5px;

        color: var(--pink);
    }

    /* =====================================================
       WELCOME
       ===================================================== */

    .welcome-section {
        padding-top: 30px;
    }

    .welcome-section h1 {
        font-size: 29px;
    }

    /* =====================================================
       MAIN BANNERS
       ===================================================== */

    .banner-section {
        width: 100%;

        overflow: hidden;

        margin-bottom: 30px;
    }

    .banner-track {
        width: 100%;
    }

    .dashboard-banner {
        width: 100%;
        min-width: 100%;
        max-width: 100%;

        height: 230px;

        min-height: 230px;

        border-radius: 19px;
    }

    /* =====================================================
       TEXT ABOVE IMAGE
       ===================================================== */

    .banner-content {
        width: 67%;

        padding:
            21px
            10px
            20px
            19px;

        position: relative;

        z-index: 5;
    }

    .banner-label {
        font-size: 8px;

        letter-spacing: 1.3px;

        margin-bottom: 7px;
    }

    .banner-content h2 {
        font-size: 25px;

        line-height: 1.02;

        max-width: 230px;
    }

    .banner-subtitle {
        font-size: 7px;

        letter-spacing: 1px;

        margin-top: 7px;
    }

    .banner-content p {
        font-size: 9px;

        line-height: 1.35;

        max-width: 210px;

        margin-top: 7px;
    }

    .banner-button {
        margin-top: 10px;

        padding:
            8px 11px;

        font-size: 8px;

        gap: 7px;
    }

    .banner-button span {
        font-size: 14px;
    }

    /* =====================================================
       FULL IMAGE BACKGROUND — MOBILE
       ===================================================== */

    .banner-artwork {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        display: block;

        z-index: 1;

        transform: translateZ(0);

        backface-visibility: hidden;
    }

    .banner-image {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        min-width: 100%;
        min-height: 100%;

        max-width: none;
        max-height: none;

        display: block;

        object-fit: cover;

        object-position: center center;

        opacity: 1;

        filter: none;

        transform: translateZ(0);

        backface-visibility: hidden;
    }

    .banner-artwork::before {
        background:
            linear-gradient(
                90deg,
                rgba(11, 5, 10, 0.84) 0%,
                rgba(11, 5, 10, 0.64) 22%,
                rgba(11, 5, 10, 0.35) 43%,
                rgba(11, 5, 10, 0.12) 68%,
                rgba(11, 5, 10, 0.00) 100%
            );
    }

    .banner-artwork::after {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.06),
                transparent 40%,
                rgba(0, 0, 0, 0.08)
            );
    }

    .banner-indicators {
        margin-top: 11px;

        gap: 6px;
    }

    .banner-dot {
        width: 7px;
        height: 7px;
    }

    .banner-dot.active {
        width: 22px;
    }

    /* =====================================================
       FINANCIAL
       ===================================================== */

    .financial-summary {
        grid-template-columns:
            1fr 1fr;
    }

    .summary-card {
        min-height: 105px;

        padding: 14px;

        gap: 10px;
    }

    .summary-icon {
        width: 42px;
        height: 42px;
    }

    .summary-icon svg {
        width: 23px;
        height: 23px;
    }

    .summary-card strong {
        font-size: 15px;
    }

    .summary-label {
        font-size: 7px;
    }

    .summary-card small {
        font-size: 8px;
    }

    /* =====================================================
       QUICK ACTIONS
       ===================================================== */

    .quick-actions {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );

        gap: 8px;
    }

    .quick-action {
        min-height: 137px;

        padding:
            14px 5px;
    }

    .quick-action-icon {
        width: 48px;
        height: 48px;

        margin-bottom: 9px;

        border-radius: 15px;
    }

    .quick-action-icon svg {
        width: 29px;
        height: 29px;
    }

    .quick-action strong {
        font-size: 10px;

        line-height: 1.2;
    }

    .quick-action small {
        font-size: 7px;

        margin-top: 4px;
    }

    /* =====================================================
       PREMIUM — MOBILE
       ===================================================== */

    .premium-banner {
        min-height: 215px;

        position: relative;

        overflow: hidden;
    }

    .premium-content {
        width: 67%;

        padding:
            24px 18px;

        position: relative;

        z-index: 5;
    }

    .premium-content h2 {
        font-size: 26px;
    }

    .premium-content p {
        font-size: 9px;
    }

    /*
     * Premium image covers the WHOLE banner.
     */
    .premium-artwork {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        z-index: 1;
    }

    .premium-banner-image {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        min-width: 100%;
        min-height: 100%;

        max-width: none;
        max-height: none;

        object-fit: cover;

        object-position: center center;

        filter: none;

        transform: translateZ(0);

        backface-visibility: hidden;
    }

    .premium-artwork::before {
        background:
            linear-gradient(
                90deg,
                rgba(21, 6, 13, 0.88) 0%,
                rgba(21, 6, 13, 0.66) 22%,
                rgba(21, 6, 13, 0.34) 45%,
                rgba(21, 6, 13, 0.10) 72%,
                rgba(21, 6, 13, 0.00) 100%
            );
    }

    /* =====================================================
       OVERVIEW
       ===================================================== */

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-card {
        min-height: 105px;
    }

    /* =====================================================
       COMMUNITY
       ===================================================== */

    .community-card {
        padding: 15px;
    }

    .community-icon {
        width: 48px;
        height: 48px;
    }

    .community-icon svg {
        width: 27px;
        height: 27px;
    }

    .community-card strong {
        font-size: 12px;
    }

    .community-card small {
        font-size: 9px;
    }

    /* =====================================================
       BOTTOM NAV
       ===================================================== */

    .bottom-navigation {
        bottom: 8px;

        width:
            calc(100% - 14px);

        min-height: 67px;

        border-radius: 19px;

        padding:
            7px 5px;
    }

    .bottom-nav-item {
        padding:
            7px 2px;

        gap: 4px;
    }

    .bottom-nav-item svg {
        width: 23px;
        height: 23px;
    }

    .bottom-nav-item span {
        font-size: 8px;
    }
}

/* =========================================================
VERY SMALL PHONES
========================================================= */

@media (max-width: 390px) {

    .finora-name {
        font-family:
            "Times New Roman",
            Times,
            serif;

        font-size: 34px;
    }

    
    .finora-brand {
        transform:
            translateX(-7px);
    }

    .header-actions {
        right: -2px;
    }

    .notification-button {
        width: 37px;
        height: 37px;
    }

    /* =====================================================
       MAIN BANNERS — VERY SMALL PHONES
       ===================================================== */

    .dashboard-banner {
        width: 100%;
        min-width: 100%;
        max-width: 100%;

        height: 218px;

        min-height: 218px;
    }

    .banner-content {
        width: 69%;

        padding:
            19px
            8px
            18px
            16px;

        position: relative;

        z-index: 5;
    }

    .banner-content h2 {
        font-size: 22px;

        max-width: 190px;
    }

    .banner-content p {
        display: none;
    }

    /* =====================================================
       FULL IMAGE BACKGROUND — VERY SMALL PHONES
       ===================================================== */

    .banner-artwork {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        display: block;

        z-index: 1;

        transform: translateZ(0);

        backface-visibility: hidden;
    }

    .banner-image {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        min-width: 100%;
        min-height: 100%;

        max-width: none;
        max-height: none;

        object-fit: cover;

        object-position: center center;

        opacity: 1;

        filter: none;

        transform: translateZ(0);

        backface-visibility: hidden;
    }

    .banner-artwork::before {
        background:
            linear-gradient(
                90deg,
                rgba(11, 5, 10, 0.86) 0%,
                rgba(11, 5, 10, 0.65) 23%,
                rgba(11, 5, 10, 0.34) 45%,
                rgba(11, 5, 10, 0.10) 70%,
                rgba(11, 5, 10, 0.00) 100%
            );
    }

    .banner-button {
        margin-top: 9px;

        padding:
            7px 10px;

        font-size: 7.5px;
    }

    .banner-indicators {
        margin-top: 10px;
    }

    /* =====================================================
       PREMIUM — VERY SMALL PHONES
       ===================================================== */

    .premium-banner {
        min-height: 210px;
    }

    .premium-artwork {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;
    }

    .premium-banner-image {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        min-width: 100%;
        min-height: 100%;

        max-width: none;
        max-height: none;

        object-fit: cover;

        object-position: center center;

        filter: none;
    }

    .quick-actions {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );

        gap: 6px;
    }

    .quick-action {
        min-height: 130px;

        padding:
            12px 3px;
    }

    .quick-action-icon {
        width: 44px;
        height: 44px;

        margin-bottom: 7px;
    }

    .quick-action-icon svg {
        width: 27px;
        height: 27px;
    }

    .quick-action strong {
        font-size: 9px;
    }

    .quick-action small {
        display: none;
    }

    .bottom-nav-item span {
        font-size: 7px;
    }
}

/* =========================================================
ACCESSIBILITY
========================================================= */

button:focus-visible,
a:focus-visible {
    outline:
        2px solid
        var(--gold);

    outline-offset: 3px;
}

/* =========================================================
REDUCE MOTION
========================================================= */

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

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration:
            0.01ms !important;

        animation-duration:
            0.01ms !important;
    }
}
/* =========================================================
   FINORA INSTALL APP PROMPT
   ========================================================= */

#finoraInstallPopup {
    position: fixed;
    left: 50%;
    top: 12px;
    transform: translate(-50%, 20px);
    width: min(460px, calc(100% - 28px));
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

#finoraInstallPopup.show {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.finora-install-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background:
        linear-gradient(
            135deg,
            rgba(20, 10, 25, 0.98),
            rgba(8, 5, 12, 0.98)
        );
    border: 1px solid rgba(234, 60, 255, 0.45);
    border-radius: 16px;
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.45),
        0 0 22px rgba(234, 60, 255, 0.12);
    backdrop-filter: blur(12px);
}

.finora-install-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background:
        linear-gradient(
            135deg,
            #EA3CFF,
            #9E18BD
        );
    font-family: "Times New Roman", serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: -0.5px;
    box-shadow:
        0 0 18px rgba(234, 60, 255, 0.25);
}

.finora-install-icon span {
    color: #FFFFFF;
}

.finora-install-icon strong {
    color: #FFD76A;
}

.finora-install-content {
    flex: 1;
    min-width: 0;
    padding-right: 4px;
}

.finora-install-title {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}

.finora-install-text {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    line-height: 1.35;
}

.finora-install-button {
    flex: 0 0 auto;
    border: 0;
    border-radius: 9px;
    padding: 10px 13px;
    background:
        linear-gradient(
            135deg,
            #F5A623,
            #C97908
        );
    color: #08050B;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4px;
    cursor: pointer;
    box-shadow:
        0 5px 15px rgba(245, 166, 35, 0.18);
}

.finora-install-button:active {
    transform: scale(0.96);
}

.finora-install-close {
    position: absolute;
    top: 5px;
    right: 7px;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    font-size: 20px;
    line-height: 24px;
    cursor: pointer;
}

.finora-install-close:hover {
    color: #FFFFFF;
}


/* =========================================================
   MOBILE INSTALL PROMPT
   ========================================================= */

@media (max-width: 520px) {

    #finoraInstallPopup {
        top: 10px;
        width: calc(100% - 20px);
    }

    .finora-install-card {
        gap: 10px;
        padding: 12px 12px;
        border-radius: 14px;
    }

    .finora-install-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        font-size: 10px;
    }

    .finora-install-title {
        font-size: 13px;
    }

    .finora-install-text {
        font-size: 10px;
    }

    .finora-install-button {
        padding: 9px 11px;
        font-size: 10px;
    }

}
