.dt-home {
    --home-bg: #050910;
    --home-card: #0b111b;
    --home-card-2: #0e1622;
    --home-border: #1a2636;
    --home-text: #f5f7fb;
    --home-muted: #7f8da2;
    --home-blue: #4e79ff;
    --home-cyan: #45d7ff;
    --home-green: #16daa0;
    --home-red: #ff526c;

    margin: 0;
    background:
        radial-gradient(
            circle at 78% 14%,
            rgba(60, 100, 255, .14),
            transparent 27%
        ),
        radial-gradient(
            circle at 18% 42%,
            rgba(19, 104, 190, .07),
            transparent 25%
        ),
        var(--home-bg);

    color: var(--home-text);
    min-height: 100vh;
}


.home-nav {
    width: min(1440px, calc(100% - 48px));
    height: 82px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}


.home-brand {
    display: flex;
    align-items: center;
    gap: 11px;
}


.home-brand div:last-child {
    display: flex;
    flex-direction: column;
}


.home-brand strong {
    font-size: 19px;
}


.home-brand small {
    color: #56677d;
    font-size: 8px;
    letter-spacing: 2px;
    margin-top: 2px;
}


.home-logo {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #3971ff,
            #42d9ff
        );

    color: white;
    font-weight: 800;
}


.home-links {
    display: flex;
    gap: 38px;
}


.home-links a {
    color: #8794a7;
    font-size: 14px;

    transition: .2s ease;
}


.home-links a:hover {
    color: white;
}


.home-actions {
    justify-self: end;

    display: flex;
    align-items: center;
    gap: 20px;
}


.text-button {
    color: #acb6c5;
    font-size: 14px;
}


.nav-primary,
.hero-primary {
    background:
        linear-gradient(
            135deg,
            #5076ff,
            #3766ff
        );

    color: white;

    border-radius: 10px;

    font-weight: 700;
}


.nav-primary {
    padding: 12px 18px;
}


.market-strip {
    border-top: 1px solid rgba(255,255,255,.035);
    border-bottom: 1px solid var(--home-border);

    background: rgba(7, 12, 19, .75);
    backdrop-filter: blur(15px);
}


.market-strip-inner {
    width: min(1440px, calc(100% - 48px));
    min-height: 48px;
    margin: auto;

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

    overflow-x: auto;
}


.strip-status {
    white-space: nowrap;

    color: #6f7e91;
    font-size: 10px;
    letter-spacing: 1.4px;
}


.live-dot {
    display: inline-block;

    width: 7px;
    height: 7px;

    margin-right: 7px;

    border-radius: 50%;

    background: var(--home-green);

    box-shadow:
        0 0 10px rgba(22, 218, 160, .75);
}


.strip-item {
    display: flex;
    align-items: center;
    gap: 9px;

    white-space: nowrap;

    font-size: 11px;
}


.strip-item span {
    color: #59697e;
}


.strip-item strong {
    font-size: 12px;
}


.strip-item b {
    color: var(--home-green);
    font-size: 11px;
}


.premium-hero {
    width: min(1440px, calc(100% - 48px));

    min-height: 700px;

    margin: auto;

    padding: 80px 0 90px;

    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(520px, 1.1fr);

    gap: 80px;

    align-items: center;
}


.hero-left {
    max-width: 620px;
}


.hero-eyebrow {
    color: #54cfff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


.hero-left h1 {
    margin: 23px 0 25px;

    font-size: clamp(55px, 6vw, 88px);

    line-height: .98;

    letter-spacing: -4.5px;
}


.hero-left h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #6f8cff,
            #4bbcff
        );

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


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

    color: #8290a4;

    font-size: 18px;

    line-height: 1.7;
}


.hero-cta {
    display: flex;
    gap: 12px;

    margin-top: 35px;
}


.hero-primary,
.hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    padding: 15px 23px;

    border-radius: 10px;
}


.hero-secondary {
    border: 1px solid #263347;

    background: #0c131e;

    color: #d8dee7;
}


.trust-row {
    margin-top: 65px;

    display: grid;

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

    gap: 25px;
}


.trust-row div {
    border-left: 1px solid #202c3c;
    padding-left: 15px;
}


.trust-row strong,
.trust-row span {
    display: block;
}


.trust-row span {
    margin-top: 5px;

    color: #627187;

    font-size: 11px;
}


.hero-terminal {
    position: relative;

    overflow: hidden;

    padding: 25px;

    border: 1px solid #223047;
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(15, 23, 36, .98),
            rgba(7, 12, 20, .98)
        );

    box-shadow:
        0 50px 100px rgba(0,0,0,.42),
        0 0 60px rgba(55, 102, 255, .06);
}


.hero-terminal::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -70px;
    top: -90px;

    border-radius: 50%;

    background:
        rgba(59, 113, 255, .11);

    filter: blur(40px);
}


.terminal-head,
.terminal-price-row,
.terminal-order,
.terminal-directions {
    position: relative;
    z-index: 2;
}


.terminal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.terminal-asset {
    display: flex;
    align-items: center;
    gap: 11px;
}


.btc-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #f59e0b;

    color: white;

    font-size: 21px;
}


.terminal-asset strong,
.terminal-asset span {
    display: block;
}


.terminal-asset span {
    margin-top: 2px;

    color: #607189;

    font-size: 11px;
}


.terminal-live {
    color: #6c7b8f;
    font-size: 10px;
}


.terminal-price-row {
    margin-top: 28px;

    display: flex;
    justify-content: space-between;
    align-items: end;
}


.terminal-price-row span,
.hero-change span {
    display: block;

    color: #68788e;

    font-size: 10px;
}


.terminal-price-row > div:first-child strong {
    display: block;

    margin-top: 4px;

    font-size: 31px;
}


.hero-change {
    text-align: right;
}


.hero-change strong {
    display: block;

    margin-top: 4px;

    color: var(--home-green);

    font-size: 16px;
}


.hero-chart-wrap {
    position: relative;

    height: 300px;

    margin-top: 24px;

    border-top: 1px solid #172333;
    border-bottom: 1px solid #172333;

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

    background-size: 60px 50px;
}


.hero-chart-wrap svg {
    width: 100%;
    height: 100%;
}


.chart-label {
    position: absolute;

    z-index: 4;

    top: 12px;
    right: 10px;

    padding: 5px 8px;

    border: 1px solid #223148;
    border-radius: 6px;

    background: #0b121c;
}


.chart-label span {
    color: #5d6f85;

    font-size: 8px;
}


.chart-label strong {
    margin-left: 5px;

    font-size: 10px;
}


.terminal-stats {
    display: grid;

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

    margin-top: 17px;
}


.terminal-stats div {
    padding: 4px 13px;

    border-right: 1px solid #1d2939;
}


.terminal-stats div:first-child {
    padding-left: 0;
}


.terminal-stats div:last-child {
    border-right: 0;
}


.terminal-stats span,
.terminal-stats strong {
    display: block;
}


.terminal-stats span {
    color: #637389;

    font-size: 9px;
    text-transform: uppercase;
}


.terminal-stats strong {
    margin-top: 4px;

    font-size: 12px;
}


.terminal-order {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-top: 22px;
}


.order-info {
    padding: 13px;

    border: 1px solid #223047;
    border-radius: 9px;

    background: #0a111a;
}


.order-info span,
.order-info strong {
    display: block;
}


.order-info span {
    color: #63738a;
    font-size: 9px;
}


.order-info strong {
    margin-top: 4px;
}


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


.terminal-directions {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-top: 10px;
}


.terminal-up,
.terminal-down {
    padding: 14px;

    border-radius: 8px;

    text-align: center;

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


.terminal-up {
    border: 1px solid rgba(19,218,157,.18);

    background: rgba(19,218,157,.12);

    color: #18daa0;
}


.terminal-down {
    border: 1px solid rgba(255,82,108,.18);

    background: rgba(255,82,108,.12);

    color: #ff5b72;
}


.market-section,
.features-section,
.final-cta {
    width: min(1440px, calc(100% - 48px));

    margin: auto;
}


.market-section {
    padding: 65px 0 95px;
}


.section-heading {
    display: flex;

    justify-content: space-between;
    align-items: end;

    margin-bottom: 28px;
}


.section-heading span {
    color: #59718f;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.7px;
}


.section-heading h2 {
    margin: 7px 0 0;

    font-size: 32px;

    letter-spacing: -1px;
}


.section-heading > a {
    color: #6e91ff;

    font-size: 13px;
}


.live-market-grid {
    display: grid;

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

    gap: 13px;
}


.live-card {
    padding: 21px;

    border: 1px solid #1b293b;
    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #0d1521,
            #09101a
        );

    transition:
        transform .2s ease,
        border-color .2s ease;
}


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

    border-color: #304560;
}


.asset-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.asset-row strong,
.asset-row span {
    display: block;
}


.asset-row span {
    margin-top: 4px;

    color: #637287;

    font-size: 11px;
}


.asset-symbol {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border: 1px solid #24334a;
    border-radius: 50%;

    background: #111a27;
}


.asset-symbol.btc {
    color: #f59e0b;
}


.asset-symbol.eth {
    color: #889cff;
}


.market-price {
    margin-top: 32px;

    display: flex;
    justify-content: space-between;
    align-items: end;
}


.market-price strong {
    font-size: 21px;
}


.market-price span {
    color: var(--home-green);

    font-size: 12px;

    font-weight: 700;
}


.features-section {
    padding: 40px 0 100px;
}


.feature-grid {
    display: grid;

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

    border-top: 1px solid #1b2736;
}


.feature-grid article {
    padding: 32px 35px 32px 0;

    border-right: 1px solid #1b2736;
}


.feature-grid article + article {
    padding-left: 35px;
}


.feature-grid article:last-child {
    border-right: 0;
}


.feature-number {
    color: #3d72ff !important;
}


.feature-grid h3 {
    margin: 30px 0 10px;

    font-size: 19px;
}


.feature-grid p {
    margin: 0;

    max-width: 330px;

    color: #718096;

    font-size: 13px;

    line-height: 1.7;
}


.final-cta {
    margin-bottom: 80px;

    padding: 45px;

    border: 1px solid #223047;
    border-radius: 18px;

    background:
        linear-gradient(
            110deg,
            #0d1726,
            #09111b
        );

    display: flex;

    align-items: center;
    justify-content: space-between;
}


.final-cta h2 {
    max-width: 650px;

    margin: 10px 0 0;

    font-size: 37px;

    letter-spacing: -1.5px;
}


.home-footer {
    width: min(1440px, calc(100% - 48px));

    margin: auto;

    padding: 30px 0;

    border-top: 1px solid #182434;

    display: flex;

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

    color: #54647a;

    font-size: 11px;
}


@media (max-width: 1050px) {

    .premium-hero {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .hero-left {
        max-width: none;
    }


    .live-market-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 760px) {

    .home-nav {
        width: calc(100% - 28px);

        grid-template-columns: 1fr auto;
    }


    .home-links {
        display: none;
    }


    .market-strip-inner,
    .premium-hero,
    .market-section,
    .features-section,
    .final-cta,
    .home-footer {
        width: calc(100% - 28px);
    }


    .premium-hero {
        padding-top: 55px;
    }


    .hero-left h1 {
        font-size: 52px;

        letter-spacing: -2.8px;
    }


    .trust-row {
        grid-template-columns: 1fr 1fr;
    }


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


    .feature-grid article {
        border-right: 0;

        border-bottom: 1px solid #1b2736;

        padding-left: 0 !important;
    }


    .final-cta {
        flex-direction: column;
        align-items: flex-start;

        gap: 30px;

        padding: 30px;
    }


    .final-cta h2 {
        font-size: 30px;
    }


    .home-footer {
        gap: 20px;
    }

}
