@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

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

:root {
    --black: #030605;
    --black-2: #060a08;
    --surface: #09110e;
    --surface-2: #0d1713;
    --line: rgba(255,255,255,.08);
    --white: #f5f8f6;
    --muted: #8c9d95;
    --green: #3ee891;
    --green-2: #8affbd;
    --green-dark: #0d2c1e;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
}

body::selection {
    background: var(--green);
    color: #001208;
}

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

button {
    font: inherit;
}

.section {
    padding: 150px 7vw;
    position: relative;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em;
}

.section-label span {
    color: rgba(255,255,255,.3);
}


/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;

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

    padding: 25px 5vw;

    transition: .4s ease;
}

.navbar.scrolled {
    background: rgba(3,6,5,.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;

    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .18em;
}

.logo-mark {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(62,232,145,.5);
    border-radius: 9px;

    color: var(--green);
    background: rgba(62,232,145,.06);

    font-weight: 800;
}

.desktop-nav {
    display: flex;
    gap: 35px;
    margin-left: auto;
    margin-right: 40px;
}

.desktop-nav a {
    color: #9eaaa5;
    font-size: 13px;
    transition: .3s;
}

.desktop-nav a:hover {
    color: white;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.sign-in {
    font-size: 13px;
    color: #a9b4af;
}

.nav-cta,
.mobile-menu-cta {
    padding: 12px 18px;
    border-radius: 100px;
    background: var(--green);
    color: #021108;
    font-weight: 800;
    font-size: 12px;
}

.nav-cta span {
    margin-left: 7px;
}

.menu-btn {
    display: none;
    background: none;
    border: 0;
    color: white;
}

.menu-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: white;
    margin: 6px;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 90;

    background: #030605;

    display: none;
    flex-direction: column;
    justify-content: center;

    padding: 40px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: "Manrope";
    font-size: 32px;
    font-weight: 700;
    margin: 12px 0;
}

.mobile-menu-cta {
    display: inline-block;
    width: fit-content;
    font-size: 14px !important;
    margin-top: 30px !important;
}


/* HERO */

.hero {
    min-height: 1000px;
    height: 100vh;
    max-height: 1100px;

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

    text-align: center;

    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at 50% 35%, rgba(30,130,80,.13), transparent 30%),
        linear-gradient(#030605,#050807);
}

.hero-grid {
    position: absolute;
    inset: 0;

    opacity: .35;

    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);

    background-size: 70px 70px;

    mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .15;
}

.glow-one {
    background: #00ff88;
    top: 20%;
    left: 5%;
}

.glow-two {
    background: #008cff;
    right: 5%;
    top: 40%;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    padding-top: 30px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 8px 14px;

    border: 1px solid var(--line);
    border-radius: 100px;

    background: rgba(255,255,255,.025);

    color: #9daea6;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}

.pulse {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--green);
}

.hero h1 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(4.2rem, 10vw, 9.5rem);

    line-height: .88;
    letter-spacing: -.075em;

    margin: 30px 0;
}

.hero h1 span {
    display: block;

    background:
        linear-gradient(
            120deg,
            #ffffff 10%,
            #79f4b0 60%,
            #35d982
        );

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    max-width: 620px;

    margin: 0 auto 30px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 16px 24px;

    border-radius: 100px;

    font-size: 13px;
    font-weight: 800;

    transition: .3s;
}

.primary-btn {
    background: var(--green);
    color: #021108;

    box-shadow: 0 20px 60px rgba(62,232,145,.12);
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 80px rgba(62,232,145,.25);
}

.secondary-btn {
    border: 1px solid var(--line);
    color: white;
    background: rgba(255,255,255,.025);
}

.secondary-btn:hover {
    background: rgba(255,255,255,.07);
}

.hero-note {
    margin-top: 20px;

    color: #65746e;
    font-size: 11px;
}

.hero-note span {
    color: var(--green);
}


/* DASHBOARD */

.hero-dashboard {
    position: absolute;

    width: min(720px, 75vw);

    bottom: -105px;
    left: 50%;
    transform: translateX(-50%);

    padding: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(18,30,25,.96),
            rgba(6,13,10,.96)
        );

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 24px;

    box-shadow:
        0 50px 150px rgba(0,0,0,.65),
        0 0 100px rgba(62,232,145,.04);

    text-align: left;

    backdrop-filter: blur(30px);

    z-index: 5;
}

.dashboard-top,
.dashboard-performance,
.dashboard-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-top small,
.dashboard-performance small,
.dashboard-bottom small {
    display: block;
    color: #6e8078;
    font-size: 10px;
    margin-bottom: 7px;
}

.dashboard-top strong {
    font-size: 22px;
}

.dashboard-status {
    color: #7d8d86;
    font-size: 10px;
}

.dashboard-status span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    margin-right: 5px;
    box-shadow: 0 0 12px var(--green);
}

.dashboard-performance {
    margin-top: 25px;
}

.dashboard-performance strong {
    font-size: 16px;
    color: var(--green);
}

.period {
    font-size: 10px;
    color: #718078;
}

.chart {
    height: 180px;
    position: relative;
    margin-top: 15px;
}

.chart-grid {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-grid i {
    height: 1px;
    background: rgba(255,255,255,.05);
}

.chart svg {
    width: 100%;
    height: 100%;
}

.chart-area {
    fill: url(#areaGradient);
}

.chart-line {
    fill: none;
    stroke: var(--green);
    stroke-width: 3;
    vector-effect: non-scaling-stroke;

    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;

    animation: drawChart 3s ease forwards 1s;
}

.chart-point {
    position: absolute;
    right: 0;
    top: 7px;

    width: 9px;
    height: 9px;

    border-radius: 50%;
    background: var(--green);

    box-shadow:
        0 0 0 7px rgba(62,232,145,.08),
        0 0 20px var(--green);
}

.dashboard-bottom {
    margin-top: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.dashboard-bottom strong {
    font-size: 14px;
}

.dashboard-actions {
    display: flex;
    gap: 8px;
}

.dashboard-actions button {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.03);
    color: white;
    border-radius: 8px;
    padding: 9px 13px;
    font-size: 10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 10px;

    color: #53635c;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.scroll-indicator span {
    width: 25px;
    height: 1px;
    background: var(--green);
}


/* TRUST */

.trust-section {
    padding: 55px 7vw;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 55px;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    background: #050907;
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    font-family: "Manrope";
    font-size: 32px;
    letter-spacing: -.05em;
}

.trust-item b {
    color: var(--green);
    font-size: 25px;
}

.trust-item span {
    display: block;
    margin-top: 4px;
    color: #64736c;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.trust-divider {
    width: 1px;
    height: 45px;
    background: var(--line);
}


/* INTRO */

.intro {
    padding-top: 180px;
    padding-bottom: 180px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 10vw;
    margin-top: 50px;
}

.intro h2,
.section-heading h2,
.investment-header h2,
.dashboard-copy h2,
.goals h2,
.security-copy h2,
.faq-heading h2,
.final-content h2 {
    font-family: "Manrope";
    font-size: clamp(3rem, 6vw, 6.2rem);
    line-height: .95;
    letter-spacing: -.065em;
}

.intro h2 em {
    color: var(--green);
    font-style: normal;
}

.intro-copy {
    padding-top: 15px;
}

.intro-copy p,
.section-heading > p,
.investment-header > p,
.dashboard-copy > p,
.security-copy > p,
.final-content > p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
}

.text-link {
    display: inline-flex;
    margin-top: 25px;
    gap: 10px;

    color: white;
    font-size: 13px;
    font-weight: 700;
}


/* EXPERIENCE */

.section-heading {
    max-width: 900px;
}

.section-heading h2 {
    margin-top: 28px;
}

.section-heading h2 span {
    color: #52615b;
}

.section-heading > p {
    max-width: 600px;
    margin-top: 25px;
}

.feature-grid {
    margin-top: 80px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-card {
    min-height: 350px;

    position: relative;
    overflow: hidden;

    padding: 35px;

    border: 1px solid var(--line);
    border-radius: 22px;

    background:
        radial-gradient(circle at 90% 10%, rgba(62,232,145,.06), transparent 30%),
        var(--surface);

    transition: .5s;
}

.feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(62,232,145,.2);
}

.feature-large {
    min-height: 500px;
}

.feature-number {
    color: #50605a;
    font-size: 10px;
}

.feature-icon {
    margin-top: 80px;

    color: var(--green);

    font-size: 40px;
}

.feature-card h3 {
    margin-top: 25px;

    font-family: "Manrope";
    font-size: 25px;
    letter-spacing: -.04em;
}

.feature-card p {
    max-width: 430px;
    margin-top: 13px;

    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
}

.floating-orbit {
    position: absolute;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(62,232,145,.12);
    border-radius: 50%;
    right: -50px;
    bottom: -60px;
    animation: spin 18s linear infinite;
}

.floating-orbit span {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
}

.floating-orbit span:nth-child(1) {
    top: 30px;
    left: 50%;
}

.floating-orbit span:nth-child(2) {
    bottom: 50px;
    right: 30px;
}

.floating-orbit span:nth-child(3) {
    bottom: 30px;
    left: 50px;
}


/* INVESTMENTS */

.investment-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
}

.investment-header h2 {
    margin-top: 25px;
}

.investment-header h2 span {
    color: var(--green);
}

.investment-header > p {
    max-width: 400px;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    margin-top: 70px;
}

.investment-card {
    min-height: 600px;

    padding: 28px;

    border: 1px solid var(--line);
    border-radius: 25px;

    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    transition: .5s;
}

.investment-card:hover {
    transform: translateY(-10px);
}

.mutual {
    background:
        radial-gradient(circle at 50% 30%, rgba(62,232,145,.13), transparent 40%),
        #07110d;
}

.stocks {
    background:
        radial-gradient(circle at 50% 30%, rgba(65,120,255,.12), transparent 40%),
        #070a12;
}

.fixed {
    background:
        radial-gradient(circle at 50% 30%, rgba(255,192,85,.10), transparent 40%),
        #110d07;
}

.investment-top {
    display: flex;
    justify-content: space-between;
}

.investment-tag {
    font-size: 9px;
    color: #77857f;
    letter-spacing: .15em;
}

.investment-arrow {
    color: white;
}

.investment-visual,
.stock-visual,
.fixed-visual {
    height: 320px;
    display: grid;
    place-items: center;
}

.rings {
    width: 220px;
    height: 220px;
    position: relative;
}

.rings span {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(62,232,145,.35);
    border-radius: 50%;
}

.rings span:nth-child(2) {
    inset: 30px;
}

.rings span:nth-child(3) {
    inset: 65px;
    background: rgba(62,232,145,.05);
}

.stock-visual svg {
    width: 100%;
}

.stock-visual path {
    fill: none;
    stroke: #6292ff;
    stroke-width: 2;
    filter: drop-shadow(0 0 10px rgba(98,146,255,.5));
}

.fixed-visual {
    align-items: end;
    gap: 15px;
}

.bar {
    width: 35px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(#ffd27c,#7e5722);
}

.bar-one { height: 70px; }
.bar-two { height: 120px; }
.bar-three { height: 180px; }
.bar-four { height: 145px; }
.bar-five { height: 225px; }

.investment-content {
    margin-top: auto;
}

.investment-content h3 {
    font-family: "Manrope";
    font-size: 30px;
    letter-spacing: -.04em;
}

.investment-content p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 13px;
    margin: 10px 0 20px;
}

.investment-content a {
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
}


/* DASHBOARD SECTION */

.dashboard-section {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 8vw;
    align-items: center;
    background: #050907;
}

.dashboard-copy h2 {
    margin: 25px 0;
}

.dashboard-copy h2 span {
    color: #65766e;
}

.dashboard-points {
    margin-top: 35px;
}

.dashboard-points div {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: #aab5b0;
    font-size: 13px;
}

.dashboard-points span {
    color: var(--green);
    margin-right: 10px;
}

.large-dashboard {
    background: #080e0b;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 50px 120px rgba(0,0,0,.5);
}

.dash-window-top {
    height: 45px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 18px;
}

.dash-window-top > span {
    width: 7px;
    height: 7px;
    background: #35403b;
    border-radius: 50%;
}

.dash-window-top small {
    margin-left: auto;
    color: #52605b;
}

.large-dash-body {
    padding: 30px;
}

.large-dash-header {
    display: flex;
    justify-content: space-between;
}

.large-dash-header small {
    display: block;
    color: #63716b;
    font-size: 10px;
    margin-bottom: 8px;
}

.large-dash-header strong {
    font-family: "Manrope";
    font-size: 28px;
}

.positive {
    color: var(--green);
}

.large-chart {
    height: 300px;
    position: relative;
    margin: 35px 0;
}

.chart-labels {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #49564f;
    font-size: 9px;
}

.large-chart svg {
    position: absolute;
    left: 50px;
    width: calc(100% - 50px);
    height: 100%;
}

.big-area {
    fill: url(#bigGradient);
}

.big-line {
    fill: none;
    stroke: var(--green);
    stroke-width: 3;
    vector-effect: non-scaling-stroke;
}

.large-dash-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-top: 1px solid var(--line);
}

.large-dash-stats div {
    padding: 20px;
    border-right: 1px solid var(--line);
}

.large-dash-stats small {
    display: block;
    color: #5e6c65;
    font-size: 9px;
    margin-bottom: 7px;
}

.large-dash-stats strong {
    font-size: 15px;
}

.green {
    color: var(--green);
}


/* GOALS */

.goals {
    background:
        radial-gradient(circle at 80% 50%, rgba(62,232,145,.05), transparent 30%);
}

.goals-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
}

.goal-card {
    padding: 30px;
    min-height: 260px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
}

.goal-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: rgba(62,232,145,.08);
    color: var(--green);
    margin-bottom: 45px;
}

.goal-card small {
    color: #64726c;
    font-size: 9px;
    letter-spacing: .15em;
}

.goal-card h3 {
    font-family: "Manrope";
    font-size: 30px;
    margin: 8px 0 18px;
}

.goal-progress {
    height: 4px;
    background: #18221e;
    border-radius: 10px;
}

.goal-progress span {
    display: block;
    height: 100%;
    background: var(--green);
    border-radius: inherit;
}

.goal-card p {
    margin-top: 10px;
    color: #5f6c66;
    font-size: 10px;
}


/* STEPS */

.steps {
    margin-top: 70px;
    border-top: 1px solid var(--line);
}

.step {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;

    padding: 38px 0;

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

.step > span {
    color: var(--green);
    font-size: 11px;
}

.step h3 {
    font-family: "Manrope";
    font-size: 26px;
    letter-spacing: -.03em;
}

.step p {
    color: var(--muted);
    margin-top: 6px;
    font-size: 13px;
}


/* SECURITY */

.security {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 10vw;
    background: #050907;
}

.security-visual {
    min-height: 500px;
    display: grid;
    place-items: center;
    position: relative;
}

.security-core {
    width: 160px;
    height: 160px;
    border-radius: 50%;

    display: grid;
    place-items: center;

    background: radial-gradient(circle, #143a29, #07100c);

    border: 1px solid rgba(62,232,145,.4);

    box-shadow:
        0 0 100px rgba(62,232,145,.15),
        inset 0 0 40px rgba(62,232,145,.1);

    z-index: 3;
}

.core-inner {
    width: 65px;
    height: 65px;

    display: grid;
    place-items: center;

    border: 1px solid var(--green);
    border-radius: 17px;

    color: var(--green);
    font-family: "Manrope";
    font-size: 30px;
    font-weight: 800;
}

.security-ring {
    position: absolute;
    border: 1px solid rgba(62,232,145,.12);
    border-radius: 50%;
}

.ring-one {
    width: 320px;
    height: 320px;
    animation: spin 20s linear infinite;
}

.ring-two {
    width: 470px;
    height: 470px;
    animation: spin 30s linear reverse infinite;
}

.security-copy h2 {
    margin: 25px 0;
}

.security-copy h2 span {
    color: var(--green);
}

.security-list {
    margin-top: 35px;
}

.security-list div {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    color: #a8b2ae;
}

.security-list span {
    color: #53635b;
    margin-right: 20px;
}


/* TESTIMONIALS */

.testimonial-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
}

.testimonial {
    padding: 35px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
}

.quote {
    font-family: Georgia;
    color: var(--green);
    font-size: 55px;
    line-height: .5;
}

.testimonial p {
    color: #b0bab5;
    line-height: 1.8;
    font-size: 14px;
    margin: 35px 0;
}

.person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #15221c;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
}

.person strong {
    display: block;
    font-size: 12px;
}

.person small {
    color: #596760;
    font-size: 9px;
}


/* FAQ */

.faq {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 10vw;
}

.faq-heading h2 {
    margin-top: 25px;
}

.faq-heading h2 span {
    color: var(--green);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;

    padding: 25px 0;

    border: 0;
    background: transparent;
    color: white;

    cursor: pointer;

    text-align: left;

    font-family: "Manrope";
    font-size: 15px;
    font-weight: 600;
}

.faq-item button span {
    color: var(--green);
    font-size: 20px;
    transition: .3s;
}

.faq-item.open button span {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: .5s ease;
}

.faq-answer p {
    padding-bottom: 25px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 13px;
}


/* FINAL CTA */

.final-cta {
    min-height: 700px;

    display: grid;
    place-items: center;

    position: relative;
    overflow: hidden;

    text-align: center;

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

.final-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;

    background: rgba(62,232,145,.08);

    filter: blur(100px);

    animation: breathe 8s ease-in-out infinite;
}

.final-content {
    position: relative;
    z-index: 2;
}

.final-content .section-label {
    justify-content: center;
}

.final-content h2 {
    margin: 30px 0;
}

.final-content h2 span {
    color: var(--green);
}

.final-content > p {
    max-width: 520px;
    margin: 0 auto 30px;
}


/* FOOTER */

footer {
    padding: 80px 7vw 30px;
    border-top: 1px solid var(--line);
    background: #020504;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr repeat(3,1fr);
    gap: 50px;
}

.footer-brand p {
    max-width: 230px;
    color: #596760;
    font-size: 12px;
    line-height: 1.7;
    margin-top: 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-column h4 {
    color: #5d6a64;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: 10px;
}

.footer-column a {
    color: #89958f;
    font-size: 12px;
    transition: .3s;
}

.footer-column a:hover {
    color: var(--green);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 25px;
    border-top: 1px solid var(--line);

    display: flex;
    justify-content: space-between;

    color: #46534d;
    font-size: 10px;
}


/* ANIMATIONS */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes drawChart {
    to {
        stroke-dashoffset: 0;
    }
}

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

@keyframes breathe {
    0%,100% {
        transform: scale(.9);
        opacity: .5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}


/* MOBILE */

@media(max-width: 900px) {

    .desktop-nav,
    .nav-actions {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .section {
        padding: 100px 6vw;
    }

    .hero {
        min-height: 900px;
    }

    .hero-dashboard {
        width: 88vw;
    }

    .intro-grid,
    .dashboard-section,
    .security,
    .faq {
        grid-template-columns: 1fr;
    }

    .investment-grid,
    .testimonial-grid,
    .goals-grid {
        grid-template-columns: 1fr;
    }

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

    .feature-large {
        min-height: 400px;
    }

    .investment-card {
        min-height: 500px;
    }

    .investment-header {
        display: block;
    }

    .investment-header > p {
        margin-top: 25px;
    }

    .trust-section {
        flex-wrap: wrap;
        gap: 25px;
    }

    .trust-divider {
        display: none;
    }

    .security-visual {
        min-height: 400px;
    }

    .ring-two {
        width: 360px;
        height: 360px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}


@media(max-width: 550px) {

    .navbar {
        padding: 20px;
    }

    .section {
        padding: 80px 20px;
    }

    .hero {
        min-height: 850px;
        height: auto;
        padding: 140px 20px 0;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    .hero-dashboard {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 80px;
        width: 100%;
        padding: 18px;
    }

    .dashboard-top strong {
        font-size: 17px;
    }

    .chart {
        height: 130px;
    }

    .scroll-indicator {
        display: none;
    }

    .trust-section {
        padding: 40px 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .trust-item strong {
        font-size: 24px;
    }

    .intro h2,
    .section-heading h2,
    .investment-header h2,
    .dashboard-copy h2,
    .goals h2,
    .security-copy h2,
    .faq-heading h2,
    .final-content h2 {
        font-size: 3.2rem;
    }

    .large-dash-body {
        padding: 18px;
    }

    .large-chart {
        height: 200px;
    }

    .large-dash-stats {
        grid-template-columns: 1fr;
    }

    .large-dash-stats div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .step {
        grid-template-columns: 50px 1fr;
    }

    .step h3 {
        font-size: 20px;
    }

    .security-core {
        width: 120px;
        height: 120px;
    }

    .ring-one {
        width: 240px;
        height: 240px;
    }

    .ring-two {
        width: 320px;
        height: 320px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}
/* =========================
   HERO — RESPONSIVE
   ========================= */

.hero {
  position: relative;
  min-height: 760px;
  padding: 120px 6vw 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(680px, 100%);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.hero-description {
  max-width: 570px;
  margin: 30px 0 34px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-dashboard-card {
  position: absolute;
  z-index: 3;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(430px, 36vw);
}


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

@media (max-width: 1000px) {

  .hero {
    min-height: auto;
    padding: 110px 5vw 70px;
  }

  .hero-content {
    width: 100%;
    max-width: 650px;
  }

  .hero-title {
    font-size: clamp(52px, 9vw, 82px);
  }

  .hero-dashboard-card {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: min(520px, 100%);
    margin: 70px auto 0;
  }

}


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

@media (max-width: 640px) {

  .hero {
    min-height: auto;
    padding: 92px 20px 55px;
    display: block;
  }

  .hero-content {
    width: 100%;
    max-width: none;
  }

  .hero-eyebrow {
    margin-bottom: 20px;
    font-size: 10px;
    letter-spacing: .13em;
  }

  .hero-title {
    font-size: clamp(48px, 15vw, 68px);
    line-height: .91;
    letter-spacing: -.065em;
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
    margin: 24px 0 28px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions a,
  .hero-actions button {
    width: 100%;
    min-height: 54px;
    justify-content: center;
  }

  .hero-dashboard-card {
    position: relative;
    width: 100%;
    max-width: 390px;
    margin: 52px auto 0;
    transform: none;
    right: auto;
    top: auto;
  }

}


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

@media (max-width: 380px) {

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-title {
    font-size: 46px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-dashboard-card {
    margin-top: 42px;
  }

}
.portfolio-card {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.portfolio-card * {
  box-sizing: border-box;
}

.portfolio-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.portfolio-value {
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1;
  word-break: break-word;
}

.portfolio-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 640px) {

  .portfolio-card {
    border-radius: 24px;
    padding: 20px;
  }

  .portfolio-card-header {
    gap: 10px;
  }

  .portfolio-value {
    font-size: 32px;
  }

  .portfolio-stats {
    grid-template-columns: 1fr 1fr;
  }

}
/* =========================================================
   VERVENET — DASHBOARD
   Premium responsive application interface
   ========================================================= */

.dashboard-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 70% 0%, rgba(112, 255, 184, .07), transparent 32%),
    #07100d;
  color: #f4fff9;
  overflow-x: hidden;
}

.dashboard-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 250px;
  padding: 32px 22px;
  background: rgba(5, 13, 11, .88);
  border-right: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(24px);
  z-index: 20;
  display: flex;
  flex-direction: column;
}

.dashboard-logo {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .16em;
  margin: 8px 12px 52px;
}

.dashboard-sidebar nav,
.sidebar-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dashboard-sidebar nav a,
.sidebar-bottom a {
  color: rgba(255,255,255,.52);
  text-decoration: none;
  padding: 13px 14px;
  border-radius: 12px;
  font-size: 14px;
  transition: .25s ease;
}

.dashboard-sidebar nav a:hover,
.sidebar-bottom a:hover,
.dashboard-sidebar nav a.active {
  color: #fff;
  background: rgba(140,255,193,.08);
}

.dashboard-sidebar nav a.active {
  box-shadow: inset 2px 0 #8cffc1;
}

.sidebar-bottom {
  margin-top: auto;
}


/* MAIN */

.dashboard-main {
  margin-left: 250px;
  min-height: 100vh;
  padding: 44px clamp(24px, 4vw, 64px);
  max-width: 1700px;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
}

.dashboard-kicker,
.panel-heading > div > span,
.reference-panel > span {
  display: block;
  color: #8cffc1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.dashboard-header h1 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -.04em;
}

.dashboard-profile {
  width: 44px;
  height: 44px;
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8cffc1, transparent);
}

.profile-avatar {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: inherit;
  background: #10201a;
  font-weight: 700;
}


/* METRICS */

.dashboard-metrics {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 16px;
}

.metric-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 22px;
  background: rgba(255,255,255,.035);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  transition: transform .3s ease, border-color .3s ease;
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(140,255,193,.22);
}

.metric-card span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255,255,255,.48);
  font-size: 12px;
}

.metric-card strong {
  display: block;
  font-size: clamp(27px, 3vw, 40px);
  letter-spacing: -.045em;
}

.metric-card small {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.4);
}

.metric-card small.positive,
.positive {
  color: #8cffc1;
}


/* ACTIONS */

.dashboard-actions {
  display: flex;
  gap: 12px;
  margin: 18px 0;
}

.dashboard-action {
  border: 0;
  padding: 15px 22px;
  border-radius: 13px;
  color: #06100c;
  background: #8cffc1;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.dashboard-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(140,255,193,.15);
}

.dashboard-action.withdraw {
  color: #fff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
}


/* GRID */

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, .8fr);
  gap: 16px;
}

.dashboard-panel {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 22px;
  background: rgba(255,255,255,.035);
  overflow: hidden;
}

.performance-panel {
  padding: 28px 28px 10px;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.panel-heading h2 {
  margin: 10px 0 0;
  font-size: 27px;
  letter-spacing: -.04em;
}

.chart-periods {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
}

.chart-periods button {
  border: 0;
  padding: 7px 9px;
  border-radius: 7px;
  color: rgba(255,255,255,.4);
  background: transparent;
  font-size: 10px;
  cursor: pointer;
}

.chart-periods button.selected {
  color: #06100c;
  background: #8cffc1;
}

.chart {
  height: 270px;
  margin-top: 20px;
}

.chart svg {
  width: 100%;
  height: 100%;
}


/* REFERENCE */

.reference-panel {
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(140,255,193,.1), transparent 45%),
    rgba(255,255,255,.035);
}

.reference-panel h3 {
  margin: 28px 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: .04em;
}

.reference-panel p {
  max-width: 270px;
  color: rgba(255,255,255,.48);
  line-height: 1.65;
  font-size: 13px;
}

.copy-reference {
  margin-top: 22px;
  padding: 12px 15px;
  border: 1px solid rgba(140,255,193,.2);
  border-radius: 10px;
  color: #8cffc1;
  background: rgba(140,255,193,.06);
  cursor: pointer;
}


/* TRANSACTIONS */

.transactions-panel {
  margin-top: 16px;
  padding: 28px;
}

.transactions-panel .panel-heading a {
  color: #8cffc1;
  text-decoration: none;
  font-size: 12px;
}

.transaction-list {
  margin-top: 22px;
}

.transaction {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.055);
}

.transaction strong {
  display: block;
  font-size: 14px;
}

.transaction small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.35);
  font-size: 11px;
}

.status {
  padding: 6px 9px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
}

.status.pending {
  color: #ffd98a;
  background: rgba(255,217,138,.08);
}

.status.successful {
  color: #8cffc1;
  background: rgba(140,255,193,.08);
}


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

@media (max-width: 1050px) {

  .dashboard-sidebar {
    width: 210px;
  }

  .dashboard-main {
    margin-left: 210px;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .metric-card:first-child {
    grid-column: 1 / -1;
  }

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

}


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

@media (max-width: 700px) {

  .dashboard-sidebar {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .dashboard-logo {
    margin: 5px 0 20px;
  }

  .dashboard-sidebar nav {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .dashboard-sidebar nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .sidebar-bottom {
    display: none;
  }

  .dashboard-main {
    margin-left: 0;
    padding: 28px 16px 45px;
  }

  .dashboard-header {
    margin-bottom: 26px;
  }

  .dashboard-header h1 {
    font-size: 28px;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .metric-card:first-child {
    grid-column: auto;
  }

  .metric-card {
    padding: 22px;
    border-radius: 18px;
  }

  .metric-card strong {
    font-size: 30px;
  }

  .dashboard-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-action {
    padding: 14px 10px;
  }

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

  .performance-panel,
  .reference-panel,
  .transactions-panel {
    padding: 22px;
    border-radius: 18px;
  }

  .panel-heading {
    flex-direction: column;
  }

  .chart-periods {
    width: 100%;
  }

  .chart-periods button {
    flex: 1;
  }

  .chart {
    height: 190px;
  }

  .transaction {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .transaction > strong {
    grid-column: 2;
    grid-row: 1;
  }

  .transaction .status {
    grid-column: 1 / -1;
    width: fit-content;
  }

}


/* SMALL PHONES */

@media (max-width: 380px) {

  .dashboard-main {
    padding-left: 12px;
    padding-right: 12px;
  }

  .dashboard-actions {
    grid-template-columns: 1fr;
  }

  .metric-card strong {
    font-size: 27px;
  }

  .panel-heading h2 {
    font-size: 24px;
  }

  .reference-panel h3 {
    font-size: 31px;
  }

}

/* =========================================================
   VERVENET — DEPOSIT CENTER
   ========================================================= */

body.modal-open {
  overflow: hidden;
}

.deposit-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity .35s ease,
    visibility .35s ease;
}

.deposit-modal.open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.deposit-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 8, .78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.deposit-dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: min(820px, 92vh);
  overflow-y: auto;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(140,255,193,.08),
      transparent 35%
    ),
    #0b0f0e;
  box-shadow:
    0 40px 120px rgba(0,0,0,.6),
    inset 0 1px rgba(255,255,255,.04);
  transform: translateY(20px) scale(.97);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}

.deposit-modal.open .deposit-dialog {
  transform: translateY(0) scale(1);
}

.deposit-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.04);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.deposit-close:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.deposit-step h2 {
  margin: 12px 0 10px;
  color: #fff;
  font-size: clamp(32px, 6vw, 48px);
  line-height: .98;
  letter-spacing: -.05em;
}

.deposit-intro {
  max-width: 460px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

.deposit-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.amount-input {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 76px;
  padding: 0 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.amount-input span {
  color: #8cffc1;
  font-size: 27px;
  font-weight: 700;
}

.amount-input input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -.04em;
}

.amount-input input::placeholder {
  color: rgba(255,255,255,.2);
}

.deposit-presets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 12px 0 24px;
}

.deposit-presets button {
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.025);
  cursor: pointer;
}

.deposit-presets button:hover {
  color: #8cffc1;
  border-color: rgba(140,255,193,.25);
}

.deposit-primary {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 24px;
  border: 0;
  border-radius: 15px;
  color: #07100b;
  background: #8cffc1;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.deposit-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(140,255,193,.15);
}

.deposit-primary:disabled {
  opacity: .55;
  cursor: wait;
  transform: none;
}

.deposit-primary span {
  font-size: 20px;
}

.deposit-error {
  min-height: 20px;
  margin: 12px 0 0;
  color: #ff8585;
  font-size: 13px;
}

.deposit-amount-card,
.reference-box,
.reference-warning,
.payment-details,
.pending-card {
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 17px;
  background: rgba(255,255,255,.035);
}

.deposit-amount-card {
  padding: 18px 20px;
  margin-bottom: 12px;
}

.deposit-amount-card small,
.reference-box small {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,.4);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
}

.deposit-amount-card strong {
  color: #fff;
  font-size: 28px;
  letter-spacing: -.04em;
}

.reference-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 18px 20px;
}

.reference-box strong {
  color: #8cffc1;
  font-size: 23px;
  letter-spacing: .05em;
}

.reference-box button {
  padding: 9px 13px;
  border: 1px solid rgba(140,255,193,.2);
  border-radius: 9px;
  color: #8cffc1;
  background: rgba(140,255,193,.06);
  cursor: pointer;
}

.reference-warning {
  margin: 12px 0;
  padding: 17px 20px;
  border-color: rgba(255,197,92,.16);
  background: rgba(255,197,92,.045);
}

.reference-warning strong {
  color: #ffc55c;
  font-size: 10px;
  letter-spacing: .14em;
}

.reference-warning p {
  margin: 7px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.6;
}

.reference-warning b {
  color: #fff;
}

.payment-details {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-bottom: 10px;
}

.payment-details div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  background: rgba(255,255,255,.02);
}

.payment-details span {
  color: rgba(255,255,255,.4);
  font-size: 12px;
}

.payment-details strong {
  color: rgba(255,255,255,.85);
  font-size: 13px;
  text-align: right;
}

.payment-note {
  margin: 0 0 18px;
  color: rgba(255,255,255,.3);
  font-size: 11px;
  line-height: 1.5;
}

.upload-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 30px;
  border: 1px dashed rgba(140,255,193,.22);
  border-radius: 20px;
  background: rgba(140,255,193,.025);
  text-align: center;
}

.upload-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #8cffc1;
  background: rgba(140,255,193,.08);
  font-size: 25px;
}

.upload-zone strong {
  color: #fff;
  font-size: 15px;
}

.upload-zone > span {
  margin: 6px 0 18px;
  color: rgba(255,255,255,.35);
  font-size: 12px;
}

.upload-zone button {
  padding: 11px 17px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.05);
  cursor: pointer;
}

.selected-file {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  padding: 13px 15px;
  border-radius: 12px;
  color: #8cffc1;
  background: rgba(140,255,193,.06);
}

.selected-file strong {
  overflow: hidden;
  color: rgba(255,255,255,.75);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deposit-success-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #07100b;
  background: #8cffc1;
  font-size: 30px;
  font-weight: 900;
}

.pending-card {
  margin: 25px 0;
  overflow: hidden;
}

.pending-card div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.pending-card div:last-child {
  border-bottom: 0;
}

.pending-card span {
  color: rgba(255,255,255,.4);
  font-size: 12px;
}

.pending-card strong {
  color: #fff;
  font-size: 13px;
}

.pending-card .pending-text {
  color: #ffc55c;
}

.hidden {
  display: none !important;
}


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

@media (max-width: 640px) {

  .deposit-modal {
    align-items: flex-end;
    padding: 0;
  }

  .deposit-dialog {
    width: 100%;
    max-height: 94vh;
    padding: 30px 20px 24px;
    border-radius: 28px 28px 0 0;
    transform: translateY(40px);
  }

  .deposit-modal.open .deposit-dialog {
    transform: translateY(0);
  }

  .deposit-dialog h2 {
    font-size: 38px;
  }

  .deposit-presets {
    grid-template-columns: repeat(2, 1fr);
  }

  .amount-input {
    min-height: 68px;
  }

  .amount-input input {
    font-size: 27px;
  }

  .reference-box strong {
    font-size: 18px;
  }

  .payment-details div,
  .pending-card div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .payment-details strong {
    text-align: left;
  }

}


/* =========================================================
   VERVENET — LIVE DASHBOARD STATES
   ========================================================= */

.dashboard-loaded [data-dashboard-name],
.dashboard-loaded [data-total-investment],
.dashboard-loaded [data-wallet-balance],
.dashboard-loaded [data-roi] {
  animation: dashboardReveal .65s cubic-bezier(.16,1,.3,1) both;
}

@keyframes dashboardReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.empty-dashboard-state {
  padding: 48px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255,255,255,.55);
}

.empty-dashboard-state strong {
  color: #fff;
  font-size: 16px;
}

.empty-icon {
  color: #8cffc1;
  font-size: 28px;
  margin-bottom: 6px;
}

.vervenet-toast {
  position: fixed;
  z-index: 99999;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;

  padding: 14px 20px;
  border-radius: 999px;

  background: rgba(18,22,25,.94);
  border: 1px solid rgba(255,255,255,.1);

  color: #fff;
  font-size: 14px;
  font-weight: 600;

  box-shadow:
    0 20px 60px rgba(0,0,0,.35);

  backdrop-filter: blur(20px);

  transition:
    opacity .3s ease,
    transform .3s cubic-bezier(.16,1,.3,1);
}

.vervenet-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.vervenet-toast[data-type="success"] {
  border-color: rgba(140,255,193,.35);
}

.vervenet-toast[data-type="error"] {
  border-color: rgba(255,100,100,.35);
}

body.modal-open {
  overflow: hidden;
}

[data-payment-status] {
  transition: all .25s ease;
}

.status.pending {
  color: #f5c76b;
}

.status.successful {
  color: #8cffc1;
}

.status.rejected {
  color: #ff7676;
}

.positive {
  color: #8cffc1 !important;
}

.negative {
  color: #ff7676 !important;
}

@media (max-width: 640px) {

  .vervenet-toast {
    width: calc(100% - 32px);
    text-align: center;
    bottom: 18px;
  }

}

/* =========================================================
   VERVENET — PROFILE DRAWER
   ========================================================= */

.profile-trigger {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

.profile-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;

  background: rgba(0,0,0,.48);
  backdrop-filter: blur(8px);

  opacity: 0;
  pointer-events: none;

  transition: opacity .3s ease;
}

.profile-drawer {
  position: fixed;
  z-index: 9001;

  top: 16px;
  right: 16px;
  bottom: 16px;

  width: min(420px, calc(100vw - 32px));

  padding: 28px;

  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(24,29,31,.98),
      rgba(10,13,15,.98)
    );

  border: 1px solid rgba(255,255,255,.09);

  box-shadow:
    0 40px 100px rgba(0,0,0,.5);

  backdrop-filter: blur(30px);

  transform: translateX(calc(100% + 40px));

  transition:
    transform .5s cubic-bezier(.16,1,.3,1);

  overflow-y: auto;
}

.profile-drawer.open {
  transform: translateX(0);
}

.profile-drawer.open
+ .profile-drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.profile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 28px;
}

.profile-drawer-title {
  margin: 0;
  font-size: 24px;
  letter-spacing: -.04em;
}

.profile-close {
  width: 42px;
  height: 42px;

  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;

  background: rgba(255,255,255,.04);
  color: #fff;

  cursor: pointer;

  font-size: 20px;
}

.profile-identity {
  padding: 22px;
  border-radius: 22px;

  background:
    linear-gradient(
      135deg,
      rgba(140,255,193,.1),
      rgba(255,255,255,.035)
    );

  border: 1px solid rgba(140,255,193,.12);

  margin-bottom: 18px;
}

.profile-big-avatar {
  width: 64px;
  height: 64px;

  display: grid;
  place-items: center;

  border-radius: 20px;

  background: #8cffc1;
  color: #07100b;

  font-size: 24px;
  font-weight: 800;

  margin-bottom: 16px;
}

.profile-name {
  margin: 0 0 4px;
  font-size: 21px;
}

.profile-username {
  color: rgba(255,255,255,.48);
  font-size: 14px;
}

.profile-status {
  display: inline-flex;
  margin-top: 15px;

  padding: 6px 10px;

  border-radius: 999px;

  background: rgba(140,255,193,.1);
  color: #8cffc1;

  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.profile-details {
  display: grid;
  gap: 10px;
}

.profile-detail {
  padding: 16px;

  border-radius: 16px;

  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.055);
}

.profile-detail span {
  display: block;

  margin-bottom: 6px;

  color: rgba(255,255,255,.4);

  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: .08em;
}

.profile-detail strong {
  display: block;

  color: #fff;

  font-size: 14px;

  overflow-wrap: anywhere;
}

.profile-referral {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.profile-copy {
  flex-shrink: 0;

  border: 0;
  border-radius: 10px;

  padding: 9px 12px;

  background: rgba(140,255,193,.1);
  color: #8cffc1;

  cursor: pointer;

  font-size: 12px;
  font-weight: 700;
}

.profile-menu {
  display: grid;
  gap: 8px;

  margin-top: 20px;
}

.profile-menu button,
.profile-menu a {
  width: 100%;

  min-height: 52px;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 0 16px;

  border-radius: 15px;

  border: 1px solid rgba(255,255,255,.06);

  background: rgba(255,255,255,.035);

  color: #fff;

  text-decoration: none;

  cursor: pointer;

  font: inherit;
  text-align: left;

  transition:
    background .2s ease,
    transform .2s ease;
}

.profile-menu button:hover,
.profile-menu a:hover {
  background: rgba(255,255,255,.07);
  transform: translateX(3px);
}

.profile-menu .logout-button {
  color: #ff8b8b;
  border-color: rgba(255,100,100,.1);
}

@media (max-width: 640px) {

  .profile-drawer {
    top: auto;
    left: 10px;
    right: 10px;
    bottom: 10px;

    width: auto;

    max-height: calc(100vh - 20px);

    border-radius: 26px;

    transform:
      translateY(calc(100% + 40px));
  }

  .profile-drawer.open {
    transform: translateY(0);
  }
}

.profile-open {
  overflow: hidden;
}

.profile-trigger {
  appearance: none;
}

.profile-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}



/* ============================================================
   VERVENET DASHBOARD — MOBILE RESPONSIVE SYSTEM
   ============================================================ */

.mobile-dashboard-header,
.dashboard-mobile-drawer,
.dashboard-mobile-overlay {
    display: none;
}


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

@media (max-width: 1100px) {

    .dashboard-sidebar {
        width: 220px;
    }

    .dashboard-main {
        margin-left: 220px;
        padding: 32px;
    }

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

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

}


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

@media (max-width: 760px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body.dashboard-page {
        min-width: 0;
        background: var(--black);
    }


    /* --------------------------------------------------------
       DESKTOP SIDEBAR OFF
       -------------------------------------------------------- */

    .dashboard-sidebar {
        display: none !important;
    }


    /* --------------------------------------------------------
       MOBILE TOP BAR
       -------------------------------------------------------- */

    .mobile-dashboard-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;

        height: 68px;

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

        padding: 0 18px;

        background: rgba(3, 6, 5, .92);
        border-bottom: 1px solid var(--line);

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

        z-index: 500;
    }


    .mobile-dashboard-logo {
        font-family: "Manrope", sans-serif;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: .18em;
        color: var(--white);
    }


    .mobile-dashboard-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }


    .mobile-profile-btn {
        width: 38px;
        height: 38px;

        padding: 0;

        border: 1px solid rgba(62, 232, 145, .3);
        border-radius: 50%;

        background: rgba(62, 232, 145, .08);
        color: white;

        cursor: pointer;
    }


    .mobile-profile-btn .profile-avatar {
        width: 100%;
        height: 100%;

        display: grid;
        place-items: center;

        font-size: 13px;
        font-weight: 800;
    }


    /* --------------------------------------------------------
       HAMBURGER
       -------------------------------------------------------- */

    .dashboard-menu-btn {
        width: 42px;
        height: 42px;

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

        gap: 5px;

        border: 1px solid var(--line);
        border-radius: 11px;

        background: rgba(255,255,255,.03);
        color: white;

        cursor: pointer;
    }


    .dashboard-menu-btn span {
        display: block;

        width: 19px;
        height: 2px;

        border-radius: 10px;

        background: var(--white);

        transition: .25s ease;
    }


    /* --------------------------------------------------------
       MAIN CONTENT
       -------------------------------------------------------- */

    .dashboard-main {
        width: 100%;
        max-width: 100%;

        margin-left: 0 !important;

        padding: 88px 16px 40px;

        overflow: hidden;
    }


    /* --------------------------------------------------------
       DESKTOP HEADER HIDDEN
       -------------------------------------------------------- */

    .dashboard-main > .dashboard-header {
        display: none;
    }


    /* --------------------------------------------------------
       METRICS
       -------------------------------------------------------- */

    .dashboard-metrics {
        display: grid;

        grid-template-columns: 1fr;

        gap: 12px;

        width: 100%;
    }


    .metric-card {
        width: 100%;
        min-width: 0;

        padding: 20px;

        border-radius: 17px;
    }


    .metric-card strong {
        font-size: clamp(24px, 8vw, 34px);

        overflow-wrap: anywhere;
    }


    .metric-card small {
        font-size: 11px;
    }


    /* --------------------------------------------------------
       ACTION BUTTONS
       -------------------------------------------------------- */

    .dashboard-actions {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 10px;

        width: 100%;

        margin: 14px 0;
    }


    .dashboard-action {
        width: 100%;

        min-height: 54px;

        padding: 12px;

        border-radius: 14px;

        font-size: 12px;
    }


    /* --------------------------------------------------------
       PANELS
       -------------------------------------------------------- */

    .dashboard-grid {
        display: grid;

        grid-template-columns: 1fr;

        gap: 14px;

        width: 100%;
    }


    .dashboard-panel {
        width: 100%;
        min-width: 0;

        border-radius: 18px;

        overflow: hidden;
    }


    .performance-panel {
        min-height: 260px;
    }


    .panel-heading {
        gap: 12px;
    }


    .panel-heading h2 {
        font-size: 22px;
    }


    .chart-periods {
        display: none;
    }


    .chart {
        width: 100%;
        height: 190px;

        overflow: hidden;
    }


    .chart svg {
        width: 100%;
        height: 100%;
    }


    /* --------------------------------------------------------
       PAYMENT REFERENCE
       -------------------------------------------------------- */

    .reference-panel {
        padding: 20px;
    }


    .reference-panel h3 {
        font-size: 24px;

        overflow-wrap: anywhere;
    }


    .copy-reference {
        width: 100%;

        min-height: 48px;

        margin-top: 14px;
    }


    /* --------------------------------------------------------
       TRANSACTIONS
       -------------------------------------------------------- */

    .transactions-panel {
        margin-top: 14px;
    }


    .transactions-panel .panel-heading a {
        font-size: 11px;
    }


    .transaction {
        display: grid;

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

        gap: 8px 10px;

        padding: 16px;
    }


    .transaction-info {
        min-width: 0;
    }


    .transaction-info strong {
        display: block;

        max-width: 100%;

        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;

        font-size: 13px;
    }


    .transaction-info small {
        font-size: 10px;
    }


    .transaction > strong {
        font-size: 12px;
        white-space: nowrap;
    }


    .transaction .status {
        grid-column: 2;

        justify-self: end;

        font-size: 9px;
    }


    /* --------------------------------------------------------
       MOBILE DRAWER
       -------------------------------------------------------- */

    .dashboard-mobile-overlay {
        position: fixed;

        inset: 0;

        background: rgba(0,0,0,.62);

        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);

        z-index: 600;
    }


    .dashboard-mobile-overlay.open {
        display: block;
    }


    .dashboard-mobile-drawer {
        position: fixed;

        top: 0;
        bottom: 0;
        left: 0;

        width: min(84vw, 340px);

        display: flex;

        flex-direction: column;

        background:
            linear-gradient(
                180deg,
                #08110d 0%,
                #030605 100%
            );

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

        transform: translateX(-105%);

        transition: transform .28s ease;

        z-index: 700;

        overflow-y: auto;

        box-shadow: 20px 0 70px rgba(0,0,0,.45);
    }


    .dashboard-mobile-drawer.open {
        transform: translateX(0);
    }


    .dashboard-mobile-drawer-head {
        height: 68px;

        flex-shrink: 0;

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

        padding: 0 20px;

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


    .dashboard-mobile-drawer-head > span {
        font-family: "Manrope", sans-serif;

        font-size: 14px;
        font-weight: 800;

        letter-spacing: .18em;
    }


    .dashboard-mobile-drawer-head button {
        width: 38px;
        height: 38px;

        display: grid;
        place-items: center;

        border: 1px solid var(--line);
        border-radius: 10px;

        background: rgba(255,255,255,.04);
        color: white;

        font-size: 25px;

        cursor: pointer;
    }


    /* --------------------------------------------------------
       MOBILE USER
       -------------------------------------------------------- */

    .dashboard-mobile-user {
        display: flex;

        align-items: center;

        gap: 12px;

        padding: 22px 20px;

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


    .dashboard-mobile-user .profile-avatar {
        width: 46px;
        height: 46px;

        flex-shrink: 0;

        display: grid;
        place-items: center;

        border-radius: 50%;

        background: rgba(62,232,145,.1);

        border: 1px solid rgba(62,232,145,.35);

        color: var(--green);

        font-weight: 800;
    }


    .dashboard-mobile-user strong {
        display: block;

        font-family: "Manrope", sans-serif;

        font-size: 14px;
    }


    .dashboard-mobile-user small {
        display: block;

        margin-top: 3px;

        color: var(--muted);

        font-size: 11px;
    }


    /* --------------------------------------------------------
       MOBILE NAV
       -------------------------------------------------------- */

    .dashboard-mobile-nav {
        padding: 12px;
    }


    .dashboard-mobile-nav a {
        display: flex;

        align-items: center;

        gap: 14px;

        min-height: 48px;

        padding: 0 13px;

        margin: 3px 0;

        border-radius: 12px;

        color: #a9b7b0;

        font-size: 13px;

        transition: .2s ease;
    }


    .dashboard-mobile-nav a span:first-child {
        width: 23px;

        text-align: center;

        color: #71857b;

        font-size: 16px;
    }


    .dashboard-mobile-nav a.active,
    .dashboard-mobile-nav a:hover {
        color: var(--white);

        background: rgba(62,232,145,.09);
    }


    .dashboard-mobile-nav a.active span:first-child {
        color: var(--green);
    }


    /* --------------------------------------------------------
       ACCOUNT / LOGOUT
       -------------------------------------------------------- */

    .dashboard-mobile-account {
        margin-top: auto;

        padding: 14px 12px 20px;

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


    .dashboard-mobile-account button {
        width: 100%;

        min-height: 48px;

        display: flex;

        align-items: center;

        gap: 14px;

        padding: 0 13px;

        border: 0;

        border-radius: 12px;

        background: transparent;

        color: #a9b7b0;

        text-align: left;

        cursor: pointer;
    }


    .dashboard-mobile-account button:hover {
        background: rgba(255,255,255,.04);

        color: white;
    }


    .dashboard-mobile-account button:last-child {
        color: #ff8d8d;
    }


    /* --------------------------------------------------------
       DEPOSIT MODAL MOBILE
       -------------------------------------------------------- */

    .deposit-modal {
        padding: 12px;
    }


    .deposit-dialog {
        width: 100%;
        max-width: 100%;

        max-height: 92vh;

        overflow-y: auto;

        border-radius: 20px;
    }


    .amount-input input {
        min-width: 0;

        font-size: 18px;
    }


    /* --------------------------------------------------------
       TOUCH TARGETS
       -------------------------------------------------------- */

    button,
    a {
        -webkit-tap-highlight-color: transparent;
    }


    .dashboard-action,
    .copy-reference,
    .mobile-profile-btn,
    .dashboard-menu-btn {
        touch-action: manipulation;
    }

}


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

@media (max-width: 380px) {

    .dashboard-main {
        padding-left: 12px;
        padding-right: 12px;
    }


    .mobile-dashboard-header {
        padding-left: 13px;
        padding-right: 13px;
    }


    .dashboard-actions {
        grid-template-columns: 1fr;
    }


    .metric-card {
        padding: 17px;
    }


    .transaction {
        padding: 14px 12px;
    }

}
