[data-theme='dark'] .hero-modern__digest-label,
[data-theme='dark'] .hero-modern__digest-caption {
    color: hsl(var(--white)/0.6);
}

/* ================= Market Board ================= */

.market-board {
    position: relative;
    overflow: hidden;
}

.market-board__shape {
    position: absolute;
    z-index: 0;
}

.market-board__shape--primary {
    top: 0;
    left: 5%;
}

.market-board__shape--secondary {
    bottom: 0;
    right: 0;
}

.crypto-board {
    position: relative;
    background: hsl(var(--section-bg));
    border-radius: 32px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

[data-theme='dark'] .crypto-board {
    background: hsl(var(--static-black));
}

.crypto-board__head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
}

.crypto-board__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: hsl(var(--black)/0.55);
}

[data-theme='dark'] .crypto-board__eyebrow {
    color: hsl(var(--white)/0.6);
}

.crypto-board__title {
    margin: 0.35rem 0;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.crypto-board__copy {
    margin-bottom: 0;
    color: hsl(var(--black)/0.65);
    max-width: 520px;
}

[data-theme='dark'] .crypto-board__copy {
    color: hsl(var(--white)/0.7);
}

.crypto-board__legend {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.legend-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
}

.legend-chip--up {
    background: hsl(var(--success)/0.15);
    color: hsl(var(--success));
}

.legend-chip--down {
    background: hsl(var(--danger)/0.15);
    color: hsl(var(--danger));
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.crypto-card {
    background: hsl(var(--white));
    border-radius: 24px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid hsl(var(--black)/0.05);
    box-shadow: 0 20px 55px hsl(var(--black)/0.05);
}

[data-theme='dark'] .crypto-card {
    background: hsl(var(--footer-bg));
    border-color: hsl(var(--white)/0.08);
    box-shadow: 0 20px 55px hsl(var(--black)/0.6);
}

.crypto-card__top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.crypto-card__identity {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.crypto-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: hsl(var(--section-bg));
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.crypto-card__icon img {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

.crypto-card__symbol {
    margin: 0;
    font-weight: 700;
}

.crypto-card__name {
    margin: 0;
    font-size: 0.85rem;
    color: hsl(var(--black)/0.6);
}

[data-theme='dark'] .crypto-card__name {
    color: hsl(var(--white)/0.65);
}

.crypto-card__tag {
    text-align: right;
    font-size: 0.8rem;
    color: hsl(var(--black)/0.5);
}

.crypto-card__tag strong {
    display: block;
    font-size: 1.1rem;
    color: hsl(var(--black));
}

[data-theme='dark'] .crypto-card__tag strong {
    color: hsl(var(--white));
}

/* ================= Logged-out Dashboard Refresh ================= */

.section-py {
    padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.btn--ghost {
    border: 1px solid hsl(var(--base)/0.45);
    color: hsl(var(--base));
    background: transparent;
    padding-inline: 1.5rem;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    background: hsl(var(--base)/0.08);
    color: hsl(var(--base));
}

.btn--pill {
    border-radius: 999px;
    padding-inline: clamp(1.5rem, 3vw, 2.4rem);
}

.btn--sm {
    padding: 0.55rem 1.15rem;
    font-size: 0.9rem;
}

.landing-hero {
    position: relative;
    overflow: hidden;
    background: hsl(var(--section-bg));
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
}

[data-theme='dark'] .landing-hero {
    background: hsl(var(--static-black));
}

.landing-hero__gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, hsl(var(--base)/0.15), transparent 45%),
        radial-gradient(circle at 80% 0%, hsl(var(--base)/0.12), transparent 40%),
        linear-gradient(135deg, hsl(var(--white)), transparent);
    opacity: 0.7;
    pointer-events: none;
}

[data-theme='dark'] .landing-hero__gradient {
    background: radial-gradient(circle at 15% 25%, hsl(var(--base)/0.25), transparent 45%),
        radial-gradient(circle at 80% 10%, hsl(var(--base)/0.25), transparent 45%),
        linear-gradient(135deg, hsl(var(--static-black)), transparent);
    opacity: 0.9;
}

.landing-hero .container {
    position: relative;
    z-index: 1;
}

.landing-hero__eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: hsl(var(--black)/0.6);
    margin-bottom: 1rem;
}

[data-theme='dark'] .landing-hero__eyebrow {
    color: hsl(var(--white)/0.6);
}

.landing-hero__title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.landing-hero__subtitle {
    font-size: 1.15rem;
    max-width: 28rem;
    color: hsl(var(--black)/0.65);
}

[data-theme='dark'] .landing-hero__subtitle {
    color: hsl(var(--white)/0.75);
}

.landing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 2rem 0 1rem;
}

.landing-hero__trust-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: hsl(var(--black));
}

[data-theme='dark'] .landing-hero__trust-label {
    color: hsl(var(--white));
}

.landing-hero__trust-copy {
    margin: 0.3rem 0 0;
    color: hsl(var(--black)/0.6);
}

[data-theme='dark'] .landing-hero__trust-copy {
    color: hsl(var(--white)/0.7);
}

.hero-orbit {
    position: relative;
    min-height: 420px;
    background: hsl(var(--white));
    border-radius: 36px;
    padding: clamp(1.5rem, 3vw, 2.75rem);
    overflow: hidden;
    box-shadow: 0 35px 85px hsl(var(--black)/0.12);
}

[data-theme='dark'] .hero-orbit {
    background: hsl(var(--footer-bg));
    box-shadow: 0 35px 85px hsl(var(--black)/0.75);
}

.hero-orbit__ring {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    border: 1px dashed hsl(var(--base)/0.4);
    opacity: 0.45;
}

.hero-orbit__particle {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 24px;
    filter: blur(2px);
    opacity: 0.65;
}

.hero-orbit__particle--one {
    top: 10%;
    right: 5%;
    background: linear-gradient(145deg, hsl(var(--base)), hsl(var(--base)/0.6));
}

.hero-orbit__particle--two {
    bottom: 5%;
    left: 3%;
    background: linear-gradient(145deg, hsl(var(--success)), hsl(var(--success)/0.45));
}

.hero-insight__stack {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-insight {
    position: relative;
    padding: 1.25rem 1.5rem;
    border-radius: 22px;
    background: hsl(var(--section-bg));
    border: 1px solid hsl(var(--black)/0.08);
    backdrop-filter: blur(6px);
}

[data-theme='dark'] .hero-insight {
    background: hsl(var(--static-black)/0.75);
    border-color: hsl(var(--white)/0.08);
}

.hero-insight__label {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.7rem;
    color: hsl(var(--black)/0.55);
    margin-bottom: 0.35rem;
}

[data-theme='dark'] .hero-insight__label {
    color: hsl(var(--white)/0.55);
}

.hero-insight__value {
    margin: 0;
    font-size: 1.25rem;
}

.hero-insight__delta {
    font-size: 0.85rem;
    font-weight: 600;
    color: hsl(var(--base));
}

.hero-insight__copy {
    margin: 0.35rem 0 0;
    color: hsl(var(--black)/0.6);
}

[data-theme='dark'] .hero-insight__copy {
    color: hsl(var(--white)/0.7);
}

.landing-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.landing-metric {
    background: hsl(var(--white));
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid hsl(var(--black)/0.06);
    box-shadow: 0 12px 35px hsl(var(--black)/0.05);
}

[data-theme='dark'] .landing-metric {
    background: hsl(var(--footer-bg));
    border-color: hsl(var(--white)/0.08);
    box-shadow: 0 12px 35px hsl(var(--black)/0.7);
}

.landing-metric__value {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.landing-metric__label {
    margin: 0;
    font-weight: 600;
}

.landing-metric__detail {
    font-size: 0.9rem;
    color: hsl(var(--black)/0.6);
}

[data-theme='dark'] .landing-metric__detail {
    color: hsl(var(--white)/0.7);
}

.market-ticker {
    background: hsl(var(--white));
}

[data-theme='dark'] .market-ticker {
    background: hsl(var(--footer-bg));
}

.market-ticker__head {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.market-ticker__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.75rem;
    color: hsl(var(--black)/0.5);
}

[data-theme='dark'] .market-ticker__eyebrow {
    color: hsl(var(--white)/0.55);
}

.market-ticker__title {
    margin: 0.5rem 0 0;
}

.market-ticker__body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
}

.market-ticker__item {
    border: 1px solid hsl(var(--black)/0.07);
    border-radius: 20px;
    padding: 1rem 1.2rem;
    background: hsl(var(--section-bg));
    min-height: 160px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

[data-theme='dark'] .market-ticker__item {
    border-color: hsl(var(--white)/0.08);
    background: hsl(var(--static-black));
}

.market-ticker__badge {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: hsl(var(--success)/0.15);
    color: hsl(var(--success));
}

.market-ticker__story {
    font-size: 1.05rem;
    line-height: 1.3;
    flex: 1;
}

.market-ticker__link {
    font-weight: 600;
    color: hsl(var(--base));
}

.section-heading {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.section-heading__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: hsl(var(--black)/0.55);
}

[data-theme='dark'] .section-heading__eyebrow {
    color: hsl(var(--white)/0.55);
}

.section-heading__copy {
    color: hsl(var(--black)/0.6);
}

[data-theme='dark'] .section-heading__copy {
    color: hsl(var(--white)/0.7);
}

.feature-grid__wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    position: relative;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid hsl(var(--black)/0.06);
    background: hsl(var(--white));
    box-shadow: 0 25px 60px hsl(var(--black)/0.06);
}

[data-theme='dark'] .feature-card {
    border-color: hsl(var(--white)/0.08);
    background: hsl(var(--footer-bg));
    box-shadow: 0 25px 60px hsl(var(--black)/0.75);
}

.feature-card__spark {
    position: absolute;
    inset: 1rem 1.5rem auto auto;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, hsl(var(--base)), hsl(var(--base)/0.6));
    opacity: 0.15;
}

.feature-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card__copy {
    color: hsl(var(--black)/0.6);
    margin: 0;
}

[data-theme='dark'] .feature-card__copy {
    color: hsl(var(--white)/0.7);
}

.journey__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.journey-card {
    padding: 1.75rem;
    border-radius: 24px;
    border: 1px dashed hsl(var(--base)/0.3);
    background: hsl(var(--section-bg));
    min-height: 240px;
}

[data-theme='dark'] .journey-card {
    background: hsl(var(--static-black));
    border-color: hsl(var(--base)/0.5);
}

.journey-card__index {
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: hsl(var(--black)/0.4);
}

[data-theme='dark'] .journey-card__index {
    color: hsl(var(--white)/0.55);
}

.journey-card__title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.journey-card__copy {
    margin: 0;
    color: hsl(var(--black)/0.6);
}

[data-theme='dark'] .journey-card__copy {
    color: hsl(var(--white)/0.7);
}

.cta-split__quote {
    background: hsl(var(--white));
    border-radius: 32px;
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid hsl(var(--black)/0.06);
    box-shadow: 0 35px 70px hsl(var(--black)/0.08);
}

[data-theme='dark'] .cta-split__quote {
    background: hsl(var(--footer-bg));
    border-color: hsl(var(--white)/0.08);
    box-shadow: 0 35px 70px hsl(var(--black)/0.8);
}

.cta-split__quote-text {
    font-size: 1.25rem;
    line-height: 1.6;
}

.cta-split__quote-author {
    margin-bottom: 0;
    font-weight: 700;
}

.cta-split__quote-role {
    font-size: 0.9rem;
    color: hsl(var(--black)/0.6);
}

[data-theme='dark'] .cta-split__quote-role {
    color: hsl(var(--white)/0.7);
}

.cta-split__card {
    border-radius: 32px;
    padding: clamp(2rem, 4.5vw, 3.5rem);
    background: linear-gradient(135deg, hsl(var(--base)/0.1), hsl(var(--base)/0.25));
    color: hsl(var(--black));
}

[data-theme='dark'] .cta-split__card {
    color: hsl(var(--white));
    background: linear-gradient(135deg, hsl(var(--base)/0.3), hsl(var(--base)/0.45));
}

.cta-split__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.8rem;
}

.cta-split__copy {
    color: inherit;
}

.cta-split__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 991px) {
    .landing-hero {
        border-bottom-left-radius: 48px;
        border-bottom-right-radius: 48px;
    }

    .landing-preview {
        padding: 0;
    }
}

@media (max-width: 575px) {
    .landing-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-metrics {
        grid-template-columns: 1fr;
    }
}

.crypto-card__price-value {
    font-size: 1.6rem;
    font-weight: 700;
}

.crypto-card__price-meta {
    color: hsl(var(--black)/0.5);
    font-size: 0.85rem;
}

.crypto-card__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.crypto-card__stat {
    background: hsl(var(--section-bg));
    border-radius: 18px;
    padding: 0.75rem;
}

[data-theme='dark'] .crypto-card__stat {
    background: hsl(var(--static-black));
}

.crypto-card__stat-label {
    margin: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(var(--black)/0.45);
}

.crypto-card__stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.crypto-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid hsl(var(--black)/0.08);
    padding-top: 0.75rem;
}

.crypto-card__spark {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.spark-line {
    width: 120px;
    height: 34px;
    background: radial-gradient(circle at top, hsl(var(--base)/0.25), transparent);
    border-radius: 16px;
}

.crypto-card__footer .btn {
    border-radius: 999px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .crypto-board__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .crypto-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .crypto-card__footer .btn {
        width: 100%;
        justify-content: center;
    }
}

.market-board__shell {
    position: relative;
    z-index: 1;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 32px;
    background: hsl(var(--white));
    box-shadow: 0 30px 80px hsl(var(--black)/0.08);
}

[data-theme='dark'] .market-board__shell {
    background: hsl(var(--footer-bg));
    box-shadow: 0 30px 80px hsl(var(--black)/0.45);
}

.market-board__head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.75rem;
}

.market-board__eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    display: inline-block;
    color: hsl(var(--black)/0.6);
    margin-bottom: 0.35rem;
}

[data-theme='dark'] .market-board__eyebrow {
    color: hsl(var(--white)/0.65);
}

.market-board__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.market-board__copy {
    margin-bottom: 0;
    color: hsl(var(--black)/0.65);
    max-width: 520px;
}

[data-theme='dark'] .market-board__copy {
    color: hsl(var(--white)/0.7);
}

.market-board__cta .btn {
    padding-inline: 1.75rem;
    border-radius: 50px;
    font-weight: 600;
}

.market-board__body {
    position: relative;
}

/* ================= Market Stream Board ================= */

.market-stream {
    background: hsl(var(--section-bg));
    border-radius: 36px;
    padding: clamp(1.25rem, 3.5vw, 2.5rem);
}

[data-theme='dark'] .market-stream {
    background: hsl(var(--static-black));
}

.market-stream__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
}

.market-mini {
    background: hsl(var(--white));
    border-radius: 18px;
    padding: 1rem 1.2rem;
    border: 1px solid hsl(var(--black)/0.05);
    box-shadow: 0 18px 45px hsl(var(--black)/0.05);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    position: relative;
    overflow: hidden;
}

[data-theme='dark'] .market-mini {
    background: hsl(var(--footer-bg));
    border-color: hsl(var(--white)/0.08);
    box-shadow: 0 18px 45px hsl(var(--black)/0.75);
}

.market-mini.is-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, hsl(var(--white)/0.2), transparent);
    animation: shimmer 1.2s linear infinite;
    transform: translateX(-100%);
}

.market-mini__header {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.market-mini__identity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.market-mini__price {
    text-align: right;
}

.market-mini__price-value {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
}

.market-mini__price small {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    color: hsl(var(--black)/0.5);
}

[data-theme='dark'] .market-mini__price small {
    color: hsl(var(--white)/0.55);
}

.market-mini__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

.market-mini__stat {
    padding: 0.5rem;
    border-radius: 14px;
    background: hsl(var(--section-bg));
}

[data-theme='dark'] .market-mini__stat {
    background: hsl(var(--static-black));
}

.market-mini__stat-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.65rem;
    color: hsl(var(--black)/0.5);
    margin-bottom: 0.25rem;
}

[data-theme='dark'] .market-mini__stat-label {
    color: hsl(var(--white)/0.55);
}

.market-mini__footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.market-mini__cap {
    font-weight: 600;
}

.market-mini__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid hsl(var(--base));
    color: hsl(var(--base));
    font-weight: 600;
    font-size: 0.85rem;
}

.market-mini__cta i {
    font-size: 0.8rem;
}

.market-pair {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.market-pair__thumb {
    position: relative;
    width: 48px;
    height: 48px;
}

.market-pair__thumb .coin-img-one,
.market-pair__thumb .coin-img-two {
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid hsl(var(--white));
}

.market-pair__thumb .coin-img-two {
    bottom: 0;
    right: 0;
    transform: translate(35%, 20%);
}

[data-theme='dark'] .market-pair__thumb .coin-img-one,
[data-theme='dark'] .market-pair__thumb .coin-img-two {
    border-color: hsl(var(--footer-bg));
}

.market-pair__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.market-pair__meta {
    display: flex;
    flex-direction: column;
}

.market-pair__symbol {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
}

.market-pair__sub {
    margin: 0;
    font-size: 0.85rem;
    color: hsl(var(--black)/0.55);
}

[data-theme='dark'] .market-pair__sub {
    color: hsl(var(--white)/0.65);
}

.value-cell {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.value-cell__primary {
    font-weight: 700;
    font-size: 1rem;
}

.value-cell__muted {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: hsl(var(--black)/0.45);
}

[data-theme='dark'] .value-cell__muted {
    color: hsl(var(--white)/0.55);
}

.change-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-weight: 600;
    background: hsl(var(--black)/0.05);
}

.change-chip.is-up {
    color: hsl(var(--success));
    background: hsl(var(--success)/0.15);
}

.change-chip.is-down {
    color: hsl(var(--danger));
    background: hsl(var(--danger)/0.15);
}

.trend-pill {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.trend-pill__bar {
    width: 120px;
    height: 6px;
    border-radius: 999px;
    background: hsl(var(--black)/0.08);
    overflow: hidden;
}

.trend-pill__fill {
    display: block;
    height: 100%;
    width: var(--trend-width, 50%);
    background: hsl(var(--base));
    border-radius: 999px;
}

.trend-pill.trend-down .trend-pill__fill {
    background: hsl(var(--danger));
}

.trend-pill__value {
    font-weight: 700;
}

.market-board__head {
    gap: 1rem;
}

@media (max-width: 1199px) {
    .landing-hero__title {
        font-size: clamp(2.2rem, 6vw, 3rem);
    }

    .landing-hero__subtitle {
        max-width: 100%;
    }

    .hero-orbit {
        margin-top: 2rem;
    }

    .landing-metrics {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .market-stream__grid {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }
}

@media (max-width: 991px) {
    .landing-hero {
        text-align: center;
    }

    .landing-hero__actions,
    .landing-hero__trust {
        justify-content: center;
    }

    .landing-hero__trust {
        max-width: 480px;
        margin-inline: auto;
    }

    .landing-metrics {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .hero-orbit {
        min-height: auto;
    }

    .market-board__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-grid__wrap,
    .journey__grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .cta-split__quote,
    .cta-split__card {
        text-align: center;
    }

    .cta-split__actions {
        justify-content: center;
    }

    .market-mini__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .market-mini__stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .landing-hero__actions {
        width: 100%;
        justify-content: center;
    }

    .landing-metrics {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .feature-grid__wrap,
    .journey__grid {
        grid-template-columns: 1fr;
    }

    .market-stream__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .market-mini__stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .market-mini__footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .market-stream__grid {
        grid-template-columns: 1fr;
    }

    .landing-hero__title {
        font-size: clamp(2rem, 8vw, 2.4rem);
    }

    .landing-hero__gradient {
        opacity: 0.9;
    }
}

@keyframes shimmer {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}

/* ================= Guest Sidebar Layout ================= */


.guest-shell {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: 1.75rem;
    padding: 2.5rem clamp(1.25rem, 4vw, 3rem);
    background: hsl(var(--section-bg));
    border-radius: 32px;
}

[data-theme='dark'] .guest-shell {
    background: hsl(var(--footer-bg));
}

.guest-sidebar {
    position: sticky;
    top: 20px;
    align-self: flex-start;
    min-height: calc(100vh - 40px);
    background: hsl(var(--white));
    border-radius: 28px;
    padding: 1.5rem;
    border: 1px solid hsl(var(--black)/0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

[data-theme='dark'] .guest-sidebar {
    background: hsl(var(--footer-bg));
    border-color: hsl(var(--white)/0.08);
}

.guest-sidebar__brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guest-sidebar__nav .navbar-nav {
    gap: 0.35rem;
}

.guest-sidebar__nav .nav-link {
    padding: 0.65rem 0.9rem;
    border-radius: 12px;
    font-weight: 600;
    color: hsl(var(--black)/0.65);
}

.guest-sidebar__nav .nav-link:hover,
.guest-sidebar__nav .nav-link:focus {
    background: hsl(var(--base)/0.08);
    color: hsl(var(--black));
}

[data-theme='dark'] .guest-sidebar__nav .nav-link {
    color: hsl(var(--white)/0.78);
}

.guest-sidebar__meta .custom--dropdown {
    width: 100%;
}

.guest-main {
    flex: 1;
    background: hsl(var(--white));
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid hsl(var(--black)/0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

[data-theme='dark'] .guest-main {
    background: hsl(var(--footer-bg));
    border-color: hsl(var(--white)/0.08);
}

.guest-main__top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.guest-main__theme {
    display: flex;
    align-items: center;
}

.guest-main__text h2 {
    font-size: clamp(1.75rem, 2.6vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.guest-main__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    color: hsl(var(--black)/0.6);
}

[data-theme='dark'] .guest-main__eyebrow {
    color: hsl(var(--white)/0.65);
}

.guest-main__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.guest-main__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.guest-stat-card {
    border: 1px solid hsl(var(--black)/0.08);
    border-radius: 18px;
    padding: 1.25rem;
    background: hsl(var(--section-bg));
}

[data-theme='dark'] .guest-stat-card {
    background: hsl(var(--static-black));
    border-color: hsl(var(--white)/0.08);
}

.guest-stat-card__label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: hsl(var(--black)/0.6);
}

.guest-stat-card__value {
    display: block;
    font-size: 1.65rem;
    margin: 0.35rem 0;
}

.guest-stat-card__desc {
    margin: 0;
    color: hsl(var(--black)/0.65);
}

[data-theme='dark'] .guest-stat-card__label,
[data-theme='dark'] .guest-stat-card__desc {
    color: hsl(var(--white)/0.65);
}

@media (max-width: 1199px) {
    .guest-sidebar {
        flex-basis: 240px;
    }
}

@media (max-width: 991px) {
    .guest-shell {
        flex-direction: column;
        padding: 1.25rem;
    }

    .guest-main__top {
        flex-direction: column;
    }

    .guest-main__theme {
        justify-content: flex-start;
    }

    .guest-main {
        padding: 1.5rem;
    }
}

@media (max-width: 575px) {
    .guest-main__actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ================= Hero Modern Banner ================= */

.banner-section--modern .banner-shell {
    padding: 3rem;
    border-radius: 32px;
    background: hsl(var(--white));
    box-shadow: 0 40px 90px hsl(var(--black)/0.08);
}

[data-theme='dark'] .banner-section--modern .banner-shell {
    background: hsl(var(--footer-bg));
    box-shadow: 0 40px 90px hsl(var(--black)/0.5);
}

.banner-content__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    color: hsl(var(--black)/0.55);
}

[data-theme='dark'] .banner-content__eyebrow {
    color: hsl(var(--white)/0.65);
}

.banner-content__stats {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.banner-stat-card {
    border: 1px solid hsl(var(--black)/0.08);
    border-radius: 18px;
    padding: 1rem;
    background: hsl(var(--section-bg));
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.banner-stat-card__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: hsl(var(--black)/0.55);
}

.banner-stat-card__value {
    font-size: 1rem;
    font-weight: 700;
}

.banner-stat-card__link {
    font-size: 0.85rem;
    font-weight: 600;
}

.banner-right__overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    display: grid;
    gap: 0.75rem;
    width: min(280px, 100%);
}

.banner-right__metric {
    background: hsl(var(--white));
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 20px 60px hsl(var(--black)/0.08);
}

[data-theme='dark'] .banner-right__metric {
    background: hsl(var(--footer-bg));
    box-shadow: 0 20px 60px hsl(var(--black)/0.45);
}

.banner-right__metric-label {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: hsl(var(--black)/0.55);
}

[data-theme='dark'] .banner-right__metric-label {
    color: hsl(var(--white)/0.6);
}

.banner-ticker {
    margin-top: 2.5rem;
    border-top: 1px solid hsl(var(--black)/0.08);
    padding-top: 1.5rem;
}

@media (max-width: 991px) {
    .banner-section--modern .banner-shell {
        padding: 2rem;
    }
}

/* ================= Market Shell ================= */
.market-shell__hero {
    border-radius: 28px;
    overflow: hidden;
}

.market-shell__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: flex-start;
}

.market-shell__filters {
    display: inline-flex;
    gap: 0.5rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: hsl(var(--white));
    border: 1px solid hsl(var(--black)/0.08);
}

[data-theme='dark'] .market-shell__filters {
    background: hsl(var(--footer-bg));
    border-color: hsl(var(--white)/0.1);
}

.market-filter {
    border: none;
    background: transparent;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    color: hsl(var(--black)/0.6);
}

.market-filter--active {
    background: hsl(var(--base));
    color: hsl(var(--white));
}

.market-shell__meta {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.market-meta-card {
    padding: 1.25rem;
    border-radius: 18px;
    border: 1px solid hsl(var(--black)/0.08);
    background: hsl(var(--white));
}

[data-theme='dark'] .market-meta-card {
    background: hsl(var(--footer-bg));
    border-color: hsl(var(--white)/0.08);
}

.market-meta-card__label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: hsl(var(--black)/0.6);
}

.market-meta-card__value {
    margin: 0.35rem 0 0.15rem;
}

.market-meta-card__desc {
    margin-bottom: 0;
    color: hsl(var(--black)/0.6);
}

[data-theme='dark'] .market-meta-card__label,
[data-theme='dark'] .market-meta-card__desc {
    color: hsl(var(--white)/0.6);
}

.market-shell__table {
    position: relative;
    border-radius: 28px;
}

.market-shell__table-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.market-shell__legend {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.market-shell__legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: hsl(var(--black)/0.65);
}

.market-shell__legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-flex;
}

.market-shell__table-surface {
    border-radius: 20px;
    border: 1px solid hsl(var(--black)/0.08);
    background: hsl(var(--white));
    padding: 1rem;
}

[data-theme='dark'] .market-shell__table-surface {
    background: hsl(var(--footer-bg));
    border-color: hsl(var(--white)/0.08);
}

@media (max-width: 767px) {
    .market-shell__filters {
        width: 100%;
        justify-content: space-between;
    }

    .market-shell__legend {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ================= Account Canvas ================= */
.account--canvas {
    background: hsl(var(--section-bg));
    padding: 0;
}

.account-inner--split {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    min-height: calc(100vh - 80px);
}

.account-showcase {
    background: radial-gradient(circle at top left, hsl(var(--base)/0.25), hsl(var(--static-black)));
    color: hsl(var(--white));
    padding: 3rem 2.5rem;
}

.account-showcase h3,
.account-showcase h5,
.account-showcase p {
    color: inherit;
}

.account-showcase__bullets {
    list-style: none;
    padding: 0;
    margin: 1.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-weight: 500;
    color: hsl(var(--white)/0.85);
}

.account-panel-wrapper {
    background: hsl(var(--section-bg));
    padding: 3rem;
}

.account-panel {
    background: hsl(var(--white));
    border-radius: 32px;
    box-shadow: 0 25px 70px hsl(var(--black)/0.08);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

[data-theme='dark'] .account-panel {
    background: hsl(var(--footer-bg));
    box-shadow: 0 25px 70px hsl(var(--black)/0.45);
}

.account-panel__header {
    border-bottom: 1px solid hsl(var(--black)/0.08);
    padding-bottom: 1.25rem;
}

[data-theme='dark'] .account-panel__header {
    border-color: hsl(var(--white)/0.1);
}

.account-panel__status {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background: hsl(var(--base)/0.08);
}

[data-theme='dark'] .account-panel__status {
    background: hsl(var(--white)/0.05);
}

.account-panel__status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
}

.account-panel__status-text {
    margin-bottom: 0;
    margin-top: 0.4rem;
    color: hsl(var(--black)/0.7);
}

[data-theme='dark'] .account-panel__status-text {
    color: hsl(var(--white)/0.75);
}

.account-panel__footer {
    margin-top: auto;
    border-top: 1px solid hsl(var(--black)/0.08);
    padding-top: 1.25rem;
}

[data-theme='dark'] .account-panel__footer {
    border-color: hsl(var(--white)/0.1);
}

@media (max-width: 1199px) {
    .account-inner--split {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 991px) {
    .account-panel-wrapper {
        padding: 2rem 1.5rem;
    }

    .account-panel {
        border-radius: 20px;
        padding: 1.75rem;
    }

    .account-showcase {
        padding: 2.5rem 1.75rem;
    }
}
/* Copy Animation */
.base-color {
    color: hsl(var(--main)) !important;
}

.copyInput {
    display: inline-block;
    line-height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.copied::after {
    position: absolute;
    top: 8px;
    right: 12%;
    width: 100px;
    display: block;
    content: "COPIED";
    font-size: 1em;
    padding: 5px 5px;
    color: #fff;
    background-color: hsl(var(--base));
    border-radius: 3px;
    opacity: 0;
    will-change: opacity, transform;
    animation: showcopied 1.5s ease;
}

@keyframes showcopied {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    50% {
        opacity: 0.7;
        transform: translateX(40%);
    }

    70% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
    }
}


.cookies-card {
    width: 520px;
    padding: 30px;
    color: #1E2337;
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 999999;
    transition: all .5s;
    background: #d1d1d1;
    border-radius: 5px;
}

[data-theme=light] .cookies-card {
    background-color: hsl(var(--section-bg));
}

[data-theme=light] .cookies-card p {
    font-weight: 300;
    color: hsl(var(--black)/0.7) !important;
}


.cookies-card.hide {
    bottom: -500px !important;
}

.radius--10px {
    border-radius: 10px;
}

.cookies-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #6e6f70;
    color: #fff;
    font-size: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    margin-bottom: 0;
}

.cookies-btn {
    color: #363636;
    text-decoration: none;
    padding: 10px 35px;
    margin: 3px 5px;
    display: inline-block;
    border-radius: 999px;
}

.cookies-btn:hover {
    color: #363636;
}


@media (max-width: 767px) {
    .cookies-card {
        width: 100%;
        left: 0;
        bottom: 0;
        font-size: 14px;
        padding: 15px;
    }
}




.hover-input-popup {
    position: relative;
}

.input-popup {
    display: none;
}

.hover-input-popup .input-popup {
    display: block;
    position: absolute;
    bottom: 130%;
    left: 50%;
    width: 280px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.input-popup::after {
    position: absolute;
    content: '';
    bottom: -19px;
    left: 50%;
    margin-left: -5px;
    border-width: 10px 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #1a1a1a transparent;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.input-popup p {
    padding-left: 20px;
    position: relative;
}

.input-popup p::before {
    position: absolute;
    content: '';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    left: 0;
    top: 4px;
    line-height: 1;
    font-size: 18px;
}

.input-popup p.error {
    text-decoration: line-through;
}

.input-popup p.error::before {
    content: "\f057";
    color: #ea5455;
}

.input-popup p.success::before {
    content: "\f058";
    color: #28c76f;
}

.show-filter {
    display: none;
}

@media(max-width:767px) {
    .responsive-filter-card {
        display: none;
        transition: none;
    }

    .show-filter {
        display: block;
    }
}

.verification-code-wrapper {
    box-shadow: var(--box-shadow) !important;
    background-color: hsl(var(--footer-bg)) !important;
    border: 0 !important;
}

.verification-code input {
    background-color: transparent !important;
    color: hsl(var(--black)) !important;
}

.verification-code::after {
    background-color: transparent !important;
}

.verification-code span {
    background-color: transparent !important;
    border-color: hsl(var(--base)) !important;
}

.verification-code input {
    letter-spacing: 67px !important;
}

body.guest-sidebar-active {
    overflow: hidden;
}

.banner-section {
    padding: 140px 0 70px;
}

@media (max-width: 991px) {
    .banner-section {
        padding: 110px 0 60px;
    }
}

@media (max-width: 575px) {
    .banner-section {
        padding: 90px 0 50px;
    }
}

.custom--dropdown--block {
    width: 100%;
}

.custom--dropdown--block .custom--dropdown__selected {
    width: 100%;
    justify-content: space-between;
}

.guest-sidebar__cta .login-registration-list {
    padding-right: 0;
    gap: 0.75rem;
}

.guest-sidebar__cta .login-registration-list__item {
    padding: 0;
}

/* ================= Guest Sidebar Layout ================= */
.guest-shell {
    display: flex;
    min-height: 100vh;
    background-color: hsl(var(--section-bg));
}

.guest-sidebar {
    width: 320px;
    flex-shrink: 0;
    background: hsl(var(--static-black));
    color: hsl(var(--white));
    position: sticky;
    top: 0;
    min-height: 100vh;
    border-right: 1px solid hsl(var(--white)/0.08);
    box-shadow: 20px 0 45px hsl(var(--black)/0.15);
    padding: 0;
}

.guest-sidebar__inner {
    padding: 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guest-sidebar__brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.guest-sidebar__logo img {
    max-width: 180px;
    max-height: 48px;
}

.guest-sidebar__intro {
    color: hsl(var(--white)/0.7);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.guest-sidebar__nav {
    flex: 1;
}

.guest-sidebar__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.guest-sidebar__link {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    color: hsl(var(--white));
    font-weight: 500;
    text-decoration: none;
    background: hsl(var(--white)/0.03);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.guest-sidebar__link:hover,
.guest-sidebar__link:focus {
    color: hsl(var(--white));
    background: hsl(var(--base)/0.25);
    transform: translateX(6px);
}

.guest-sidebar__link.active,
.guest-sidebar__link--active,
.guest-sidebar__link:hover,
.guest-sidebar__link:focus {
    color: hsl(var(--white));
    background: linear-gradient(120deg, hsl(var(--base)), hsl(var(--base)/0.85));
    transform: translateX(6px);
    box-shadow: 0 10px 25px hsl(var(--base)/0.35);
}

.guest-sidebar__link i {
    font-size: 1.2rem;
}

.guest-sidebar__cta,
.guest-sidebar__meta {
    border-top: 1px solid hsl(var(--white)/0.08);
    padding-top: 1.5rem;
}

.guest-sidebar__section-title {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    color: hsl(var(--white)/0.55);
    margin-bottom: 0.8rem;
}

.guest-sidebar__section + .guest-sidebar__section {
    margin-top: 1.25rem;
}

.guest-sidebar__close {
    border: none;
    background: hsl(var(--white)/0.08);
    color: hsl(var(--white));
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guest-sidebar__close i {
    font-size: 1.25rem;
}

.guest-sidebar__section .theme-switch-wrapper {
    margin-top: 0.5rem;
}

.guest-shell__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: hsl(var(--section-bg));
}

.guest-shell__topbar {
    width: 100%;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: hsl(var(--section-bg));
    border-bottom: 1px solid hsl(var(--black)/0.1);
    position: sticky;
    top: 0;
    z-index: 30;
}

.guest-sidebar-toggle {
    border: none;
    background: hsl(var(--base));
    color: hsl(var(--white));
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.guest-sidebar-toggle__icon {
    font-size: 1.4rem;
}

.guest-topbar__logo img {
    max-height: 36px;
}

.guest-shell__body {
    flex: 1;
    padding: 2.5rem;
    width: 100%;
}

.guest-shell__body > section,
.guest-shell__body > div {
    position: relative;
    z-index: 1;
}

.guest-shell__body .container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
}

.guest-shell__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2rem;
    align-items: flex-start;
}

.guest-shell__grid--full {
    grid-template-columns: minmax(0, 1fr);
}

.guest-shell__main {
    min-width: 0;
}

.guest-shell__main-inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.guest-shell__rail {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-self: flex-start;
}

.guest-rail {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guest-rail-card {
    background: hsl(var(--white));
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid hsl(var(--black)/0.06);
    box-shadow: 0 20px 60px hsl(var(--black)/0.05);
}

[data-theme='dark'] .guest-rail-card {
    background: hsl(var(--footer-bg));
    border-color: hsl(var(--white)/0.06);
    box-shadow: 0 20px 60px hsl(var(--black)/0.35);
}

.guest-rail-card__eyebrow {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: hsl(var(--black)/0.6);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

[data-theme='dark'] .guest-rail-card__eyebrow {
    color: hsl(var(--white)/0.6);
}

.guest-rail-card__title {
    margin-bottom: 1rem;
}

.guest-rail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guest-rail-list li,
.guest-rail-highlights li {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    font-weight: 500;
    color: hsl(var(--black)/0.75);
}

[data-theme='dark'] .guest-rail-list li,
[data-theme='dark'] .guest-rail-highlights li {
    color: hsl(var(--white)/0.75);
}

.guest-rail-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.guest-rail-chip--success {
    background: hsl(var(--base)/0.15);
    color: hsl(var(--base));
}

.guest-rail-chip--neutral {
    background: hsl(var(--black)/0.08);
}

[data-theme='dark'] .guest-rail-chip--neutral {
    background: hsl(var(--white)/0.15);
    color: hsl(var(--white));
}

.guest-rail-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guest-rail-card--cta {
    background: linear-gradient(135deg, hsl(var(--base)/0.15), hsl(var(--base)/0.05));
    border-color: hsl(var(--base)/0.35);
}

.guest-rail-card__cta-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.guest-rail-card__cta-desc {
    margin-bottom: 1rem;
    color: hsl(var(--black)/0.7);
}

[data-theme='dark'] .guest-rail-card__cta-desc {
    color: hsl(var(--white)/0.75);
}

@media (max-width: 1199px) {
    .guest-sidebar {
        width: 280px;
    }

    .guest-shell__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .guest-shell__rail {
        position: static;
    }
}

@media (max-width: 991px) {
    .guest-shell {
        flex-direction: column;
    }

    .guest-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        width: 320px;
        max-width: 90%;
    }

    .guest-sidebar.guest-sidebar--open {
        transform: translateX(0);
    }

    .guest-sidebar__inner {
        padding-top: 1.75rem;
    }

    .guest-shell__body {
        padding: 1.5rem 1.25rem 2.5rem;
    }
}

@media (max-width: 575px) {
    .guest-shell__body {
        padding: 1.25rem 1rem 2rem;
    }

    .guest-sidebar__link {
        padding: 0.75rem 0.85rem;
    }
}

/* ================= Hero Modern ================= */
.hero-modern {
    position: relative;
    padding: 3rem 0 3.5rem;
    background: radial-gradient(circle at top left, hsl(var(--base)/0.18), transparent 55%), hsl(var(--section-bg));
    overflow: hidden;
    border-radius: 32px;
}

.hero-modern__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.hero-modern__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 600;
    font-size: 0.8rem;
    color: hsl(var(--base));
    margin-bottom: 1.25rem;
}

.hero-modern__title {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-modern__desc {
    font-size: 1.05rem;
    color: hsl(var(--black)/0.7);
    margin-bottom: 2rem;
}

[data-theme='dark'] .hero-modern__desc {
    color: hsl(var(--white)/0.7);
}

.hero-modern__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hero-modern__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: hsl(var(--base));
}

.hero-modern__link i {
    font-size: 1.25rem;
}

.hero-modern__signals {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

[data-theme='dark'] .hero-modern__signals li {
    color: hsl(var(--white)/0.75);
}

.hero-modern__signals li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    color: hsl(var(--black)/0.75);
}

[data-theme='dark'] .hero-modern__signals li {
    color: hsl(var(--white)/0.75);
}

.hero-modern__signals li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: hsl(var(--base));
}

.hero-modern__visual {
    position: relative;
    background: hsl(var(--white));
    border-radius: 28px;
    padding: 1.5rem;
    box-shadow: 0 25px 80px hsl(var(--black)/0.08);
    overflow: hidden;
    min-height: 360px;
}

[data-theme='dark'] .hero-modern__visual {
    background: hsl(var(--black));
    box-shadow: 0 25px 80px hsl(var(--black)/0.35);
}

.hero-modern__visual img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-modern .banner-right {
    position: relative;
    right: 0;
    top: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
}

.hero-modern .banner-right__thumb {
    width: 100%;
}

.hero-modern .banner-right__shape {
    left: auto;
    right: 0;
}

.hero-modern .banner-right__bg .bg {
    opacity: 0.65;
}

@media (max-width: 1199px) {
    .hero-modern .banner-right {
        max-width: 460px;
    }
}

@media (max-width: 991px) {
    .hero-modern__grid {
        gap: 2rem;
    }

    .hero-modern .banner-right {
        margin-top: 1.5rem;
    }
}

@media (max-width: 575px) {
    .hero-modern {
        border-radius: 20px;
        padding: 2.25rem 0 3rem;
    }
}

.hero-modern__visual .hero-modern__glass {
    position: absolute;
    inset: 15px;
    border-radius: 24px;
    border: 1px solid hsl(var(--base)/0.35);
    pointer-events: none;
}

.hero-modern__cards {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.hero-card {
    background: hsl(var(--white));
    padding: 1.25rem;
    border-radius: 18px;
    border: 1px solid hsl(var(--black)/0.05);
    box-shadow: 0 20px 60px hsl(var(--black)/0.05);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

[data-theme='dark'] .hero-card {
    background: hsl(var(--footer-bg));
    border-color: hsl(var(--white)/0.05);
}

.hero-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: hsl(var(--base));
    font-weight: 700;
}

.hero-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}

.hero-card__action {
    margin-top: auto;
    font-weight: 600;
    color: hsl(var(--black));
}

.hero-card__action i {
    margin-left: 6px;
}

[data-theme='dark'] .hero-card__action {
    color: hsl(var(--white));
}

.hero-ticker {
    margin-top: 2rem;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid hsl(var(--black)/0.08);
    background: hsl(var(--white));
}

[data-theme='dark'] .hero-ticker {
    background: hsl(var(--footer-bg));
    border-color: hsl(var(--white)/0.08);
}

.hero-ticker__track {
    display: flex;
    gap: 1rem;
    animation: heroTicker 30s linear infinite;
    padding: 0.85rem 1.5rem;
    width: max-content;
}

.hero-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: inherit;
    white-space: nowrap;
}

.hero-ticker__item .badge {
    font-size: 0.7rem;
    text-transform: uppercase;
}

@keyframes heroTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero-modern__signals-panel {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border: 1px solid hsl(var(--black)/0.08);
    border-radius: 18px;
    background: hsl(var(--white));
}

[data-theme='dark'] .hero-modern__signals-panel {
    background: hsl(var(--footer-bg));
    border-color: hsl(var(--white)/0.08);
}

.hero-modern__signals-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: hsl(var(--black)/0.6);
    margin-bottom: 0.75rem;
}

[data-theme='dark'] .hero-modern__signals-title {
    color: hsl(var(--white)/0.55);
}

.hero-modern__quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.hero-stat {
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid hsl(var(--black)/0.08);
    background: hsl(var(--white));
}

[data-theme='dark'] .hero-stat {
    background: hsl(var(--footer-bg));
    border-color: hsl(var(--white)/0.08);
}

.hero-stat__label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: hsl(var(--black)/0.5);
}

.market-stat__value {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 0.25rem;
}

.hero-stat__desc {
    margin-bottom: 0;
    font-size: 0.9rem;
    min-width: 82px;
    padding: 0.3rem 0.6rem;

[data-theme='dark'] .hero-stat__label,
[data-theme='dark'] .hero-stat__desc {
    color: hsl(var(--white)/0.6);
}

.hero-modern__boards {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.hero-modern__digest {
    border-radius: 20px;
    border: 1px solid hsl(var(--black)/0.08);
    padding: 1.75rem;
    background: hsl(var(--white));
}

[data-theme='dark'] .hero-modern__digest {
    background: hsl(var(--footer-bg));
    border-color: hsl(var(--white)/0.08);
}

.hero-modern__digest-grid {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.hero-modern__digest-item {
    padding: 1rem;
    border-radius: 16px;
    border: 1px dashed hsl(var(--black)/0.15);
}

[data-theme='dark'] .hero-modern__digest-item {
    border-color: hsl(var(--white)/0.15);
}

.hero-modern__digest-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.35rem;
    color: hsl(var(--black)/0.6);
}

.hero-modern__digest-value {
    font-size: 1.35rem;
    font-weight: 700;
}

.hero-modern__digest-caption {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: hsl(var(--black)/0.6);
}

[data-theme='dark'] .hero-modern__digest-label,
[data-theme='dark'] .hero-modern__digest-caption {
    color: hsl(var(--white)/0.6);
}
.coincheck-section .container {
    margin-inline: 20px;
}

.section-bg{
    background-color: transparent !important;
}
.banner-section,.section-bg,.table-section,.invest-section,.product-section{
    margin-inline: 20px;
}
@media screen and (max-width: 768px) {
    .banner-section,.section-bg,.table-section,.invest-section,.product-section{
    margin-inline: 0px;
}
}
.account-left{
    display: none;
}
.account-right-wrapper{
    margin-left: 100px;
}

@media (max-width: 991px) {
    .invest-section .invest-thumb {
        text-align: center;
        margin-top: 2rem;
    }

    .invest-section .invest-thumb img {
        max-width: min(380px, 90%);
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .invest-section .invest-item {
        padding-left: 0;
    }

    .invest-section .invest-item::before {
        left: 18px;
    }

    .invest-section .invest-item__content {
        padding-left: 3.5rem;
    }

    .invest-section .invest-item__style {
        left: 0;
    }
}