﻿:root {
    --navy: #0d2b4c;
    --navy-90: #264361;
    --navy-70: #607891;
    --navy-50: #8fa0b3;
    --navy-30: #b8c2cc;
    --navy-10: #e2e6ea;
    --blue: #41adff;
    --blue-90: #54b6ff;
    --blue-70: #7fc6ff;
    --blue-50: #a3d7ff;
    --blue-30: #c5e6ff;
    --blue-10: #e7f5ff;
    --black: #1d1d1d;
    --black-90: #333333;
    --black-70: #656565;
    --black-50: #909090;
    --black-30: #b2b2b2;
    --black-10: #d7d7d7;
    --ink: #edf6ff;
    --muted: #a4bdd4;
    --line: rgba(65, 173, 255, 0.28);
    --glass: rgba(13, 43, 76, 0.44);
    --glass-dark: rgba(13, 22, 35, 0.78);
    --radius-lg: 1.2rem;
    --radius-xl: 1.65rem;
    --shadow-deep: 0 14px 45px rgba(0, 0, 0, 0.55);
    --shadow-blue: 0 0 28px rgba(65, 173, 255, 0.32);
    --section-space: clamp(3.4rem, 6vw, 4.3rem);
    --section-space-tight-top: clamp(1.75rem, 2.8vw, 2.2rem);
    --fs-h1: clamp(2rem, 2.75vw, 3.2rem);
    --fs-h2: clamp(1.85rem, 2.4vw, 2.85rem);
    --fs-h2-display: clamp(2.1rem, 3.2vw, 3.3rem);
    --fs-h3: clamp(1.35rem, 1.9vw, 2rem);
    --fs-h3-compact: clamp(1.08rem, 1.35vw, 1.24rem);
    --fs-h3-meta: clamp(0.96rem, 1.05vw, 1.05rem);
    --fs-body-md: clamp(0.98rem, 1.15vw, 1.08rem);
    --fs-body-lg: clamp(1rem, 1.3vw, 1.2rem);
    --fs-body-sm: clamp(0.86rem, 0.95vw, 0.95rem);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Sora", "Space Grotesk", "Trebuchet MS", sans-serif;
    color: var(--ink);
    line-height: 1.58;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 14% 8%, rgba(65, 173, 255, 0.25), transparent 34%),
        radial-gradient(circle at 80% 14%, rgba(65, 173, 255, 0.18), transparent 32%),
        radial-gradient(circle at 50% 82%, rgba(13, 43, 76, 0.6), transparent 38%),
        linear-gradient(180deg, #01080f 0%, #020d18 40%, #02070f 100%);
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    z-index: -2;
    pointer-events: none;
    filter: blur(12px);
}

body::before {
    width: 420px;
    height: 420px;
    left: -120px;
    top: 36%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(65, 173, 255, 0.22) 0%, transparent 70%);
}

body::after {
    width: 460px;
    height: 460px;
    right: -160px;
    top: 64%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(65, 173, 255, 0.2) 0%, transparent 70%);
}

.bg-grid {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(65, 173, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(65, 173, 255, 0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 90%);
}

.site-header {
    position: sticky;
    top: 0.85rem;
    z-index: 1200;
    padding-top: 0.75rem;
}

.site-nav {
    border: 1px solid var(--line);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    background: rgba(2, 12, 20, 0.78);
    box-shadow: var(--shadow-blue);
    padding: 0.58rem 0.95rem;
}

.nav-inner {
    align-items: center;
    width: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.62rem;
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink);
    flex-shrink: 0;
}

.brand:hover {
    color: var(--blue-10);
}

.brand-logo {
    width: 2.32rem;
    height: 2.32rem;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.25));
}

.brand-text {
    color: #fff;
    font-size: 1.14rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    white-space: nowrap;
}

.nav-shell {
    border: 1px solid rgba(65, 173, 255, 0.32);
    border-radius: 999px;
    padding: 0.16rem;
    background: rgba(10, 23, 37, 0.65);
    display: flex;
    align-items: center;
    gap: 0.08rem;
}

.nav-shell .nav-item {
    display: flex;
}

.nav-shell .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.015em;
    line-height: 1;
    white-space: nowrap;
    height: 1.9rem;
    padding: 0 0.65rem;
    border: 0;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav-shell .nav-link:hover,
.nav-shell .nav-link.active {
    color: #f2f9ff;
    background: linear-gradient(160deg, rgba(65, 173, 255, 0.22), rgba(65, 173, 255, 0.11));
    box-shadow: inset 0 0 0 1px rgba(65, 173, 255, 0.32);
}

.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    border-radius: 999px;
    border: 1px solid rgba(65, 173, 255, 0.45);
    color: #f3fbff;
    padding: 0.48rem 1.18rem 0.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
    background: linear-gradient(120deg, rgba(65, 173, 255, 0.26), rgba(13, 43, 76, 0.8));
    min-width: 152px;
    flex-shrink: 0;
}

.btn-login:hover {
    color: #fff;
    border-color: rgba(65, 173, 255, 0.9);
}

.btn-login i {
    font-size: 0.8rem;
}

.btn-login span {
    white-space: nowrap;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.26rem;
    border: 1px solid rgba(65, 173, 255, 0.36);
    border-radius: 999px;
    padding: 0.2rem;
    background: rgba(8, 20, 32, 0.8);
    margin-right: 0.58rem;
}

.lang-btn {
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--blue-30);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    padding: 0.34rem 0.5rem 0.3rem;
    min-width: 2.22rem;
}

.lang-btn.is-active,
.lang-btn:hover {
    color: #f5fbff;
    background: linear-gradient(150deg, rgba(65, 173, 255, 0.3), rgba(13, 43, 76, 0.82));
}

main {
    padding-bottom: 2rem;
}

.panel-surface {
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: linear-gradient(155deg, rgba(13, 43, 76, 0.58), rgba(6, 14, 23, 0.78));
    box-shadow: var(--shadow-deep);
}

.hero-section {
    padding: 3.65rem 0 3.9rem;
}

.hero-beam {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 11px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(65, 173, 255, 0), rgba(65, 173, 255, 0.8), rgba(65, 173, 255, 0));
    border-radius: 999px;
    filter: blur(0.4px);
    box-shadow: 0 0 40px rgba(65, 173, 255, 0.66);
    opacity: 0.88;
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.95fr 0.78fr;
    gap: 1.15rem;
    align-items: start;
}

.hero-copy {
    padding: 1.55rem;
}

.eyebrow {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
    color: var(--blue-30);
    font-size: 0.77rem;
    border: 1px solid rgba(65, 173, 255, 0.35);
    border-radius: 999px;
    padding: 0.3rem 0.72rem;
    background: rgba(65, 173, 255, 0.08);
}

.hero-copy h1 {
    margin: 0.95rem 0 0.8rem;
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-weight: 700;
    font-size: var(--fs-h1);
    letter-spacing: 0.01em;
    line-height: 1.04;
}

.hero-copy p,
.hero-side p,
.feature-card p,
.hub-step p,
.content-panel p {
    color: var(--muted);
    margin: 0;
    font-size: var(--fs-body-md);
    line-height: 1.5;
}

.section-heading p {
    color: var(--muted);
    margin: 0;
    font-size: var(--fs-body-lg);
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.35rem;
}

.hero-actions .btn {
    padding-top: 0.62rem;
    padding-bottom: 0.48rem;
    line-height: 1;
}

.btn-glow,
.btn-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.7rem;
    font-weight: 600;
    font-size: 0.86rem;
    letter-spacing: 0.01em;
    line-height: 1;
    padding: 0.58rem 1.2rem 0.52rem;
}

.btn-glow {
    color: #f8fcff;
    border: 1px solid rgba(65, 173, 255, 0.8);
    background: linear-gradient(120deg, var(--blue), #339eff);
    box-shadow: 0 0 18px rgba(65, 173, 255, 0.45);
}

.btn-glow:hover {
    color: #fff;
    border-color: #84ccff;
    box-shadow: 0 0 24px rgba(65, 173, 255, 0.66);
}

.btn-soft {
    color: var(--blue-10);
    border: 1px solid rgba(65, 173, 255, 0.42);
    background: rgba(65, 173, 255, 0.08);
}

.btn-soft:hover {
    color: #fff;
    background: rgba(65, 173, 255, 0.18);
    border-color: rgba(65, 173, 255, 0.75);
}

.mini-stats {
    margin-top: 1.35rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.mini-card {
    border: 1px solid rgba(65, 173, 255, 0.24);
    border-radius: 0.9rem;
    background: rgba(6, 17, 28, 0.76);
    padding: 0.7rem 0.85rem;
}

.mini-card span {
    display: block;
    color: var(--blue-50);
    font-size: 0.73rem;
}

.mini-card strong {
    display: block;
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-size: 1.18rem;
    margin-top: 0.18rem;
    color: #fff;
}

.trade-panel {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(65, 173, 255, 0.38);
    background: linear-gradient(170deg, rgba(13, 43, 76, 0.75), rgba(2, 10, 18, 0.96));
    box-shadow: var(--shadow-deep), var(--shadow-blue);
    padding: 1rem;
}

.trade-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
    margin-bottom: 0.78rem;
}

.trade-tabs button {
    border: 1px solid rgba(65, 173, 255, 0.3);
    border-radius: 0.5rem;
    background: rgba(65, 173, 255, 0.07);
    color: var(--blue-30) !important;
    padding: 0.42rem;
    font-size: 0.75rem;
}

.trade-tabs button.active,
.trade-tabs button:hover {
    color: #fff;
    background: rgba(65, 173, 255, 0.28);
    border-color: rgba(65, 173, 255, 0.88);
}

.trade-title {
    color: #f1fbff;
    margin: 0 0 0.72rem;
    font-weight: 600;
    font-size: 0.92rem;
}

.market-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.62rem;
    border: 1px solid rgba(65, 173, 255, 0.2);
    padding: 0.53rem 0.7rem;
    margin-bottom: 0.55rem;
    background: rgba(5, 15, 24, 0.72);
    color: var(--blue-30);
    font-size: 0.84rem;
}

.market-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    line-height: 1;
}

.market-row strong {
    color: #fff;
    font-weight: 600;
}

.hero-side {
    padding: 1.55rem 1.3rem;
    min-height: 100%;
}

.avatar-stack {
    display: flex;
    margin-bottom: 1.2rem;
}

.avatar-stack span {
    display: grid;
    place-items: center;
    width: 2.05rem;
    height: 2.05rem;
    border-radius: 50%;
    border: 1px solid rgba(65, 173, 255, 0.35);
    background: linear-gradient(140deg, rgba(65, 173, 255, 0.25), rgba(13, 43, 76, 0.85));
    color: #fff;
    margin-right: -0.42rem;
}

.hero-side h2 {
    font-size: var(--fs-h2);
    line-height: 1.1;
    margin: 0 0 0.7rem;
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-weight: 700;
}

.hero-floating {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 0.72rem;
    border: 1px solid rgba(65, 173, 255, 0.34);
    border-radius: 0.85rem;
    background: linear-gradient(150deg, rgba(13, 43, 76, 0.8), rgba(5, 16, 25, 0.96));
    padding: 0.7rem 0.86rem;
    max-width: 280px;
    box-shadow: var(--shadow-deep);
    animation: floatY 4.8s ease-in-out infinite;
}

.hero-floating i {
    color: var(--blue);
    margin-top: 0.15rem;
}

.hero-floating h3 {
    margin: 0;
    font-size: 0.83rem;
    font-weight: 600;
}

.hero-floating p {
    margin: 0.2rem 0 0;
    font-size: 0.72rem;
    color: var(--muted);
}

.floating-a {
    left: 42%;
    bottom: -1.65rem;
}

.floating-b {
    right: 2.5%;
    bottom: -2.25rem;
    animation-delay: 0.9s;
}

.section-block {
    padding: var(--section-space) 0;
}

.section-tight {
    padding-top: var(--section-space-tight-top);
}

.trust-section {
    padding-top: clamp(1.25rem, 2.2vw, 1.7rem);
    padding-bottom: clamp(1.9rem, 3.1vw, 2.35rem);
}

.trust-shell {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.trust-heading {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 0.9rem;
}

.trust-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(65, 173, 255, 0.35);
    background: rgba(65, 173, 255, 0.1);
    color: var(--blue-30);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1;
    padding: 0.32rem 0.8rem;
    text-transform: uppercase;
}

.trust-heading h2 {
    margin: 0;
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-weight: 700;
    font-size: var(--fs-h2-display);
    line-height: 1.12;
    letter-spacing: 0.01em;
}

.trust-heading p {
    margin: 0.55rem auto 0;
    max-width: 700px;
    color: var(--muted);
    font-size: var(--fs-body-lg);
    line-height: 1.45;
}

.trust-marquee-wrap {
    position: relative;
    overflow: hidden;
    padding: 0.24rem 0;
    max-width: 1080px;
    margin: 0 auto;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.trust-marquee {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: max-content;
    gap: 0.72rem;
    padding: 0 0.4rem;
    will-change: transform;
    animation: trustMarqueeLoop var(--trust-marquee-duration, 34s) linear infinite;
}

.trust-item {
    border: 1px solid rgba(65, 173, 255, 0.24);
    border-radius: 0.86rem;
    background: rgba(7, 20, 33, 0.7);
    min-height: 68px;
    min-width: 168px;
    padding: 0.6rem 0.7rem;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 0.56rem;
    color: #eef7ff;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.015em;
    line-height: 1;
    white-space: nowrap;
}

.trust-item img {
    width: 1.48rem;
    height: 1.48rem;
    min-width: 1.48rem;
    display: block;
    object-fit: contain;
    opacity: 0.95;
}

.trust-item span {
    display: inline-block;
    line-height: 1;
}

.trust-note {
    margin: 0.65rem 0 0;
    color: var(--blue-50);
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.01em;
}

@keyframes trustMarqueeLoop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 1.4rem;
    text-align: center;
}

.section-heading h2,
.content-panel h3,
.table-shell h3,
.feature-card h3,
.hub-step h3,
.community-card h2 {
    margin: 0;
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-weight: 700;
    line-height: 1.12;
}

.section-heading h2 {
    font-size: var(--fs-h2-display);
    letter-spacing: 0.01em;
    margin-bottom: 0.58rem;
}

.market-section .section-heading {
    max-width: 860px;
    margin-bottom: 1.7rem;
}

.market-section .section-heading h2 {
    font-size: var(--fs-h2-display);
    letter-spacing: 0.01em;
}

.market-section .section-heading p {
    font-size: var(--fs-body-lg);
    line-height: 1.45;
}

.coin-ticker-fade {
    position: relative;
    overflow: hidden;
    padding: 0.45rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.coin-ticker {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: max-content;
    gap: 0.8rem;
    padding: 0 0.5rem;
    will-change: transform;
}

.coin-ticker + .coin-ticker {
    margin-top: 0.74rem;
}

.coin-ticker.is-ready {
    animation: coinTickerLoop var(--ticker-duration, 36s) linear infinite;
}

.coin-ticker.ticker-right.is-ready {
    animation-direction: reverse;
}

.coin-chip {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(65, 173, 255, 0.3);
    background: rgba(9, 23, 36, 0.78);
    padding: 0.58rem 1.12rem;
    color: var(--blue-30);
    font-size: 0.98rem;
    line-height: 1;
    box-shadow: none;
}

@keyframes coinTickerLoop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.coin-icon {
    width: 1.62rem;
    height: 1.62rem;
    min-width: 1.62rem;
    display: block;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    transform-origin: center center;
    filter: drop-shadow(0 0 5px rgba(65, 173, 255, 0.24));
}

.coin-icon-sm {
    width: 1.42rem;
    height: 1.42rem;
    min-width: 1.42rem;
    display: block;
    object-fit: cover;
    object-position: center;
    transform-origin: center center;
}

.coin-icon-orbit {
    width: 2.62rem;
    height: 2.62rem;
    min-width: 2.62rem;
    display: block;
    object-fit: cover;
    object-position: center;
    transform-origin: center center;
    padding: 0;
    border: 0;
    background: transparent;
    filter: drop-shadow(0 0 5px rgba(65, 173, 255, 0.24));
}

@media (prefers-reduced-motion: reduce) {
    .coin-ticker.is-ready {
        animation: none;
    }

    .trust-marquee {
        animation: none;
    }
}

.dashboard-card {
    border: 1px solid rgba(65, 173, 255, 0.35);
    border-radius: var(--radius-lg);
    background: linear-gradient(140deg, rgba(13, 43, 76, 0.5), rgba(3, 12, 21, 0.9));
    box-shadow: var(--shadow-deep);
    padding: 1rem;
}

.dashboard-top {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: space-between;
    align-items: center;
    border-radius: 0.62rem;
    border: 1px solid rgba(65, 173, 255, 0.22);
    background: rgba(5, 15, 24, 0.76);
    padding: 0.45rem 0.72rem;
    color: var(--blue-30);
    font-size: 0.74rem;
}

.dashboard-top span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #d9ecff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.015em;
}

.dashboard-top i {
    color: var(--blue);
    font-size: 0.5rem;
}

.chart-market-switch {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.chart-market-btn {
    border: 1px solid rgba(65, 173, 255, 0.35);
    border-radius: 999px;
    background: rgba(7, 21, 34, 0.9);
    color: var(--blue-30);
    padding: 0.25rem 0.5rem 0.22rem;
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1;
    transition: border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.chart-market-btn:hover,
.chart-market-btn.is-active {
    color: #f0f9ff;
    border-color: rgba(65, 173, 255, 0.78);
    background: linear-gradient(140deg, rgba(65, 173, 255, 0.24), rgba(13, 43, 76, 0.86));
    transform: translateY(-1px);
    box-shadow: 0 0 14px rgba(65, 173, 255, 0.24);
}

.chart-market-btn .coin-icon-sm {
    width: 1.04rem;
    height: 1.04rem;
    min-width: 1.04rem;
}

.dashboard-body {
    margin-top: 0.8rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.8rem;
}

.chart-surface {
    border-radius: 0.85rem;
    border: 1px solid rgba(65, 173, 255, 0.2);
    background:
        linear-gradient(to right, rgba(65, 173, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to top, rgba(65, 173, 255, 0.05) 1px, transparent 1px),
        rgba(5, 16, 27, 0.88);
    background-size: 32px 32px, 32px 32px, auto;
    min-height: 260px;
    position: relative;
    overflow: hidden;
}

#marketCandleCanvas {
    width: 100%;
    height: 100%;
    min-height: 260px;
    display: block;
}

.chart-overlay {
    position: absolute;
    left: 0.62rem;
    top: 0.62rem;
    display: inline-flex;
    align-items: baseline;
    gap: 0.58rem;
    border: 1px solid rgba(65, 173, 255, 0.26);
    border-radius: 999px;
    padding: 0.34rem 0.62rem 0.28rem;
    background: rgba(5, 16, 27, 0.8);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.24);
    pointer-events: none;
    transform-origin: left center;
    will-change: transform, opacity;
}

.chart-overlay strong {
    color: #f2f9ff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.chart-overlay span {
    font-size: 0.76rem;
    line-height: 1;
}

#chartPriceLabel {
    color: #dceeff;
    font-weight: 600;
}

.stats-column {
    display: flex;
    flex-direction: column;
    gap: 0.62rem;
}

.stat-item {
    border: 1px solid rgba(65, 173, 255, 0.24);
    border-radius: 0.7rem;
    background: rgba(7, 18, 30, 0.8);
    padding: 0.66rem 0.72rem;
}

.stat-item span {
    color: var(--blue-30);
    display: block;
    font-size: 0.72rem;
}

.stat-item strong {
    color: #fff;
    font-size: 1.02rem;
    font-weight: 600;
}

.positive {
    color: #67f0ab;
}

.negative {
    color: #ff7a92;
}

.content-panel {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(65, 173, 255, 0.32);
    background: linear-gradient(160deg, rgba(13, 43, 76, 0.4), rgba(6, 14, 23, 0.88));
    box-shadow: var(--shadow-deep);
    padding: 1.35rem;
}

.content-panel h3 {
    font-size: var(--fs-h3);
    margin-bottom: 0.95rem;
}

.tick-list {
    margin: 0 0 1.15rem;
    padding: 0;
    list-style: none;
}

.tick-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.54rem;
    color: var(--blue-30);
    margin-bottom: 0.66rem;
    font-size: 0.9rem;
}

.tick-list i {
    color: var(--blue);
    margin-top: 0.15rem;
}

.exchange-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.78rem;
}

.exchange-card {
    border: 1px solid rgba(65, 173, 255, 0.28);
    border-radius: 0.95rem;
    background: linear-gradient(165deg, rgba(13, 43, 76, 0.52), rgba(5, 15, 25, 0.92));
    box-shadow: var(--shadow-deep);
    padding: 0.85rem;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.exchange-card:hover {
    transform: translateY(-5px);
    border-color: rgba(65, 173, 255, 0.74);
    box-shadow: var(--shadow-deep), var(--shadow-blue);
}

.exchange-card h3 {
    margin: 0;
    color: var(--blue-30);
    font-size: var(--fs-body-sm);
    font-weight: 500;
}

.exchange-card p {
    margin: 0.6rem 0 0.25rem;
    color: #fff;
    font-size: var(--fs-body-lg);
    font-weight: 600;
}

.exchange-card span {
    font-size: 0.78rem;
}

.exchange-card-loading {
    opacity: 0.86;
}

.market-change {
    display: inline-block;
    font-weight: 600;
}

.table-shell {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(65, 173, 255, 0.35);
    background: linear-gradient(165deg, rgba(13, 43, 76, 0.48), rgba(4, 12, 21, 0.92));
    box-shadow: var(--shadow-deep);
    overflow: hidden;
}

.table-shell-head {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(65, 173, 255, 0.22);
    padding: 0.9rem 1rem;
}

.table-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
}

.market-window-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.market-meta {
    color: var(--blue-50);
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-top: 0.36rem;
}

.table-shell h3 {
    font-size: var(--fs-h3-compact);
}

.table-shell .btn-soft {
    color: var(--blue-10) !important;
}

.table-shell .btn-glow {
    color: #f8fcff !important;
}

.table-shell .btn.btn-sm {
    line-height: 1;
    padding-top: 0.42rem;
    padding-bottom: 0.34rem;
}

.market-table {
    margin: 0;
    --bs-table-bg: transparent;
    --bs-table-color: #deebf7;
    --bs-table-border-color: rgba(65, 173, 255, 0.14);
    --bs-table-striped-bg: rgba(65, 173, 255, 0.05);
    --bs-table-striped-color: #deebf7;
    --bs-table-hover-bg: rgba(65, 173, 255, 0.08);
    --bs-table-hover-color: #ffffff;
    color: #deebf7;
}

.market-table thead {
    background: rgba(7, 19, 31, 0.8);
}

.market-table > :not(caption) > * > * {
    color: #deebf7;
    background-color: transparent;
}

.market-table th {
    color: var(--blue-50);
    border: 0;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.85rem 1rem;
    white-space: nowrap;
}

.market-table td {
    border-color: rgba(65, 173, 255, 0.14);
    padding: 0.72rem 1rem;
    font-size: 0.9rem;
    background: transparent;
    white-space: nowrap;
}

.market-table td:first-child {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #f4fbff;
    font-weight: 600;
}

.track-record-section {
    position: relative;
}

.track-record-section .section-heading {
    max-width: 860px;
    margin-bottom: 1rem;
}

.track-record-shell {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(65, 173, 255, 0.32);
    background: linear-gradient(165deg, rgba(13, 43, 76, 0.44), rgba(4, 12, 21, 0.9));
    box-shadow: var(--shadow-deep);
    overflow: hidden;
    padding: 0.95rem;
}

.track-record-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.62rem;
    margin-bottom: 0.78rem;
}

.track-record-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(65, 173, 255, 0.34);
    border-radius: 999px;
    background: rgba(65, 173, 255, 0.14);
    color: var(--blue-20);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1;
    padding: 0.3rem 0.66rem 0.26rem;
    text-transform: uppercase;
}

.track-record-meta {
    color: var(--blue-50);
    font-size: 0.76rem;
    line-height: 1.34;
}

.track-record-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.56rem;
    margin-bottom: 0.72rem;
}

.track-record-stat {
    border: 1px solid rgba(65, 173, 255, 0.22);
    border-radius: 0.78rem;
    background: rgba(7, 19, 31, 0.72);
    padding: 0.58rem 0.64rem;
}

.track-record-stat span {
    display: block;
    color: var(--blue-40);
    font-size: 0.74rem;
    font-weight: 500;
    line-height: 1.2;
}

.track-record-stat strong {
    display: block;
    margin-top: 0.28rem;
    color: #f6fbff;
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.1;
}

.track-record-chart-shell {
    margin-bottom: 0.74rem;
    border: 1px solid rgba(65, 173, 255, 0.2);
    border-radius: 0.78rem;
    background: rgba(6, 18, 30, 0.72);
    padding: 0.58rem 0.64rem;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
    gap: 0.72rem;
}

.track-record-chart-canvas-wrap {
    width: clamp(142px, 16vw, 188px);
    aspect-ratio: 1 / 1;
}

#trackRecordPieChart {
    display: block;
    width: 100%;
    height: 100%;
}

.track-record-chart-legend {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    justify-items: start;
    gap: 0.34rem;
}

.track-record-chart-legend li {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    gap: 0.45rem;
    color: var(--blue-30);
    font-size: 0.78rem;
    line-height: 1.3;
}

.track-record-chart-legend strong {
    justify-self: start;
    color: #f2f9ff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.track-record-dot {
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 50%;
    display: inline-block;
}

.track-record-dot.is-win {
    background: #56e3a8;
}

.track-record-dot.is-loss {
    background: #ff7a92;
}

.track-record-dot.is-be {
    background: #8fc9ff;
}

.track-record-dot.is-rr {
    background: #ffd676;
}

#trackRecordLegendRrLabelText {
    color: #ffd676;
}

.track-record-table-wrap {
    border: 1px solid rgba(65, 173, 255, 0.2);
    border-radius: 0.78rem;
    background: rgba(5, 15, 26, 0.66);
    overflow: hidden;
}

.track-record-table {
    margin: 0;
    --bs-table-bg: transparent;
    --bs-table-color: #dceaf8;
    --bs-table-border-color: rgba(65, 173, 255, 0.12);
}

.track-record-table th {
    color: var(--blue-50);
    border: 0;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.68rem 0.76rem;
    white-space: nowrap;
}

.track-record-table td {
    border-color: rgba(65, 173, 255, 0.12);
    padding: 0.62rem 0.76rem;
    font-size: 0.84rem;
    white-space: nowrap;
    color: #e8f3ff;
}

.track-record-table td.track-record-status-cell {
    font-weight: 700;
    letter-spacing: 0.03em;
}

.track-record-table td.status-win,
.track-record-table td.positive {
    color: #67f0ab;
}

.track-record-table td.status-loss,
.track-record-table td.negative {
    color: #ff7a92;
}

.track-record-table td.status-be {
    color: #8fc9ff;
}

.track-record-table td.status-open {
    color: #ffd676;
}

.track-record-table-actions {
    margin-top: 0.52rem;
    display: flex;
    justify-content: center;
}

.track-record-table-toggle {
    border: 1px solid rgba(65, 173, 255, 0.34);
    border-radius: 999px;
    background: rgba(65, 173, 255, 0.14);
    color: #e8f5ff;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
    padding: 0.38rem 0.88rem 0.34rem;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.track-record-table-toggle:hover,
.track-record-table-toggle:focus-visible {
    background: rgba(65, 173, 255, 0.24);
    border-color: rgba(111, 197, 255, 0.62);
    color: #f7fbff;
}

.features-section {
    position: relative;
}

.features-intro {
    margin-bottom: 1.85rem;
}

.features-title-wrap {
    position: relative;
    max-width: 520px;
    padding-left: 1.05rem;
}

.features-title-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.18rem;
    bottom: 0.16rem;
    width: 4px;
    border-radius: 999px;
    background: repeating-linear-gradient(
            to bottom,
            rgba(65, 173, 255, 0.72) 0 11px,
            rgba(65, 173, 255, 0.08) 11px 21px
    );
    box-shadow: 0 0 18px rgba(65, 173, 255, 0.38);
}

.feature-kicker {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(65, 173, 255, 0.35);
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(65, 173, 255, 0.2), rgba(65, 173, 255, 0.08));
    color: var(--blue-20);
    font-size: 0.77rem;
    letter-spacing: 0.03em;
    padding: 0.33rem 0.76rem 0.28rem;
}

.features-title-wrap h2 {
    margin: 0.88rem 0 0;
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-weight: 700;
    font-size: var(--fs-h2-display);
    line-height: 1.12;
    letter-spacing: 0.01em;
}

.features-intro-copy {
    margin: 0.45rem 0 0;
    max-width: 690px;
    color: var(--blue-40);
    font-size: var(--fs-body-lg);
    line-height: 1.5;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
}

.feature-card {
    position: relative;
    min-height: 258px;
    border: 1px solid rgba(65, 173, 255, 0.26);
    border-radius: 1rem;
    background: linear-gradient(160deg, rgba(10, 32, 46, 0.88), rgba(4, 13, 22, 0.96));
    box-shadow: var(--shadow-deep);
    padding: 1rem 1.03rem 1.08rem;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(112deg, rgba(18, 65, 104, 0.23), rgba(8, 20, 31, 0.12) 56%, rgba(5, 16, 26, 0.9) 100%);
    pointer-events: none;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: -12% -34%;
    background: radial-gradient(circle at var(--card-glow-x, 76%) var(--card-glow-y, 22%), rgba(65, 173, 255, 0.24), rgba(65, 173, 255, 0) 48%);
    pointer-events: none;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(65, 173, 255, 0.32);
    border-radius: 999px;
    background: rgba(6, 23, 36, 0.7);
    color: var(--blue-30);
    font-size: 0.74rem;
    letter-spacing: 0.02em;
    padding: 0.3rem 0.72rem 0.24rem;
}

.feature-card-media {
    position: absolute;
    right: 0.95rem;
    top: 0.72rem;
    font-size: 5rem;
    line-height: 1;
    color: rgba(65, 173, 255, 0.19);
    pointer-events: none;
    filter: drop-shadow(0 0 18px rgba(65, 173, 255, 0.2));
}

.feature-card-body {
    margin-top: 7rem;
    max-width: 80%;
}

.feature-card h3 {
    font-size: var(--fs-h3-compact);
    margin-bottom: 0.64rem;
    line-height: 1.15;
}

.feature-card p {
    color: var(--blue-50);
    line-height: 1.48;
    font-size: var(--fs-body-md);
}

.feature-card-signal {
    --card-glow-x: 82%;
    --card-glow-y: 20%;
}

.feature-card-risk {
    --card-glow-x: 80%;
    --card-glow-y: 18%;
}

.feature-card-review {
    --card-glow-x: 67%;
    --card-glow-y: 40%;
}

.feature-card-review .feature-card-media {
    font-size: 5.35rem;
    top: 0.5rem;
}

.feature-card-support {
    --card-glow-x: 84%;
    --card-glow-y: 20%;
}

.coins-area {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.coins-area .section-heading {
    margin: 0 auto 0.95rem;
}

.coins-area-cta {
    margin-top: 0.24rem;
}

.coins-visual {
    position: relative;
    margin: 2.45rem auto 0;
    padding: 0.9rem 0 0.95rem;
}

.coins-visual::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(95vw, 1180px);
    height: clamp(312px, 32vw, 356px);
    border-radius: 1.25rem;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 46%, rgba(65, 173, 255, 0.2), rgba(65, 173, 255, 0.06) 45%, rgba(65, 173, 255, 0) 78%),
        linear-gradient(180deg, rgba(13, 43, 76, 0.76) 0%, rgba(13, 43, 76, 0.66) 62%, rgba(13, 43, 76, 0.4) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #000 13%, #000 87%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #000 13%, #000 87%, rgba(0, 0, 0, 0) 100%);
    box-shadow: inset 0 0 68px rgba(65, 173, 255, 0.1);
    z-index: -1;
}

.orbit-wrap {
    position: relative;
    width: min(94vw, 380px);
    aspect-ratio: 1;
    margin: 0 auto;
    --orbit-radius: 188px;
}

.orbit-track {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(65, 173, 255, 0.18);
    animation: none;
}

.orbit-node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(calc(var(--i) * 45deg)) translate(var(--orbit-radius)) rotate(calc(var(--i) * -45deg));
    width: 3.08rem;
    height: 3.08rem;
    border-radius: 50%;
    border: 1px solid rgba(65, 173, 255, 0.42);
    background: rgba(6, 18, 29, 0.9);
    color: var(--blue-30);
    display: grid;
    place-items: center;
    box-shadow: 0 0 16px rgba(65, 173, 255, 0.42);
    animation: orbitNodeSpin 16s linear infinite;
}

@keyframes orbitNodeSpin {
    from {
        transform: translate(-50%, -50%) rotate(calc(var(--i) * 45deg)) translate(var(--orbit-radius)) rotate(calc(var(--i) * -45deg));
    }

    to {
        transform: translate(-50%, -50%) rotate(calc((var(--i) * 45deg) + 360deg)) translate(var(--orbit-radius)) rotate(calc((var(--i) * -45deg) - 360deg));
    }
}

.orbit-center {
    position: absolute;
    inset: 23%;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(65, 173, 255, 0.6);
    color: var(--blue-10);
    font-size: 2.45rem;
    background: radial-gradient(circle at 30% 20%, rgba(65, 173, 255, 0.34), rgba(13, 43, 76, 0.94));
    box-shadow: 0 0 35px rgba(65, 173, 255, 0.42);
}

.orbit-logo {
    width: 52%;
    max-width: 92px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.3));
}

.hub-curve {
    position: relative;
    margin-top: 2.6rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.hub-curve::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 46%;
    height: 130px;
    border: 2px solid rgba(65, 173, 255, 0.35);
    border-color: rgba(65, 173, 255, 0.35) transparent transparent transparent;
    border-radius: 50%/100%;
    pointer-events: none;
}

.hub-step {
    position: relative;
    border: 1px solid rgba(65, 173, 255, 0.24);
    border-radius: 1rem;
    background: linear-gradient(160deg, rgba(13, 43, 76, 0.42), rgba(6, 16, 25, 0.9));
    box-shadow: var(--shadow-deep);
    padding: 1rem;
}

.hub-step span {
    display: inline-grid;
    place-content: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 0.8rem;
    border: 1px solid rgba(65, 173, 255, 0.65);
    background: rgba(65, 173, 255, 0.16);
    color: var(--blue-10);
    font-weight: 700;
    margin-bottom: 0.72rem;
    box-shadow: var(--shadow-blue);
}

.hub-step h3 {
    font-size: var(--fs-h3-compact);
    margin-bottom: 0.5rem;
}

.testimonials-section {
    position: relative;
}

.testimonials-section.section-block {
    padding-bottom: 1.35rem;
}

.testimonial-grid {
    margin-top: 1.9rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
}

.testimonial-card {
    border: 1px solid rgba(65, 173, 255, 0.28);
    border-radius: 1rem;
    background: linear-gradient(160deg, rgba(13, 43, 76, 0.48), rgba(4, 13, 22, 0.93));
    box-shadow: var(--shadow-deep);
    padding: 1rem;
    min-height: 100%;
}

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 0.72rem;
    margin-bottom: 0.65rem;
}

.testimonial-meta {
    min-width: 0;
}

.testimonial-avatar {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(65, 173, 255, 0.46);
    background: rgba(65, 173, 255, 0.14);
    color: var(--blue-10);
    box-shadow: 0 0 18px rgba(65, 173, 255, 0.22);
}

.testimonial-meta h3 {
    margin: 0;
    font-size: var(--fs-h3-meta);
    line-height: 1.2;
}

.testimonial-meta small {
    color: var(--blue-40);
    font-size: 0.8rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.26rem;
    margin-left: auto;
    margin-bottom: 0;
    color: #ffd76a;
    font-size: 0.78rem;
    line-height: 1;
    align-self: center;
    white-space: nowrap;
}

.testimonial-card p {
    margin: 0;
    color: var(--blue-40);
    line-height: 1.52;
    font-size: var(--fs-body-md);
}

.testimonial-form-shell {
    margin-top: 1.25rem;
    border: 1px solid rgba(65, 173, 255, 0.28);
    border-radius: 1rem;
    background: linear-gradient(160deg, rgba(13, 43, 76, 0.44), rgba(4, 13, 22, 0.95));
    box-shadow: var(--shadow-deep);
    padding: 1rem;
}

.testimonial-form-shell h3 {
    margin: 0 0 0.4rem;
    font-size: var(--fs-h3-compact);
}

.testimonial-form-shell > p {
    margin: 0;
    color: var(--blue-40);
    font-size: var(--fs-body-md);
    line-height: 1.5;
}

.testimonial-form {
    margin-top: 0.9rem;
}

.testimonial-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.testimonial-field {
    display: grid;
    gap: 0.34rem;
}

.testimonial-field span {
    color: var(--blue-30);
    font-size: 0.84rem;
    font-weight: 600;
}

.testimonial-field input,
.testimonial-field select,
.testimonial-field textarea {
    width: 100%;
    border: 1px solid rgba(65, 173, 255, 0.26);
    border-radius: 0.72rem;
    background: rgba(4, 14, 23, 0.9);
    color: #eef7ff;
    font-size: 0.94rem;
    padding: 0.6rem 0.72rem 0.54rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-field textarea {
    min-height: 114px;
    resize: vertical;
}

.testimonial-field input::placeholder,
.testimonial-field textarea::placeholder {
    color: rgba(199, 219, 238, 0.62);
}

.testimonial-field input:focus,
.testimonial-field select:focus,
.testimonial-field textarea:focus {
    border-color: rgba(65, 173, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(65, 173, 255, 0.15);
}

.testimonial-field-full {
    grid-column: 1 / -1;
}

.testimonial-form-actions {
    margin-top: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.testimonial-form-actions small {
    color: var(--blue-50);
    font-size: 0.8rem;
}

.testimonial-form-feedback {
    margin: 0.68rem 0 0;
    min-height: 1.18rem;
    color: var(--blue-40);
    font-size: 0.86rem;
}

.testimonial-form-feedback.is-success {
    color: #67f0ab;
}

.testimonial-form-feedback.is-error {
    color: #ff8aa1;
}

.vip-section {
    position: relative;
}

.vip-heading {
    max-width: 920px;
}

.vip-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    border: 1px solid rgba(65, 173, 255, 0.34);
    border-radius: 999px;
    background: rgba(65, 173, 255, 0.1);
    color: var(--blue-20);
    padding: 0.34rem 0.8rem 0.28rem;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.72rem;
}

.vip-kicker i {
    color: #ffd66b;
}

.vip-layout {
    margin-top: 1.65rem;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 0.98rem;
}

.vip-card {
    border: 1px solid rgba(65, 173, 255, 0.28);
    border-radius: 1rem;
    background: linear-gradient(160deg, rgba(13, 43, 76, 0.46), rgba(4, 13, 22, 0.94));
    box-shadow: var(--shadow-deep);
    padding: 1.05rem;
}

.vip-pricing-card {
    display: flex;
    flex-direction: column;
}

.vip-card h3 {
    margin: 0;
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-weight: 700;
    font-size: var(--fs-h3-compact);
    line-height: 1.15;
}

.vip-card > p {
    margin: 0.48rem 0 0;
    color: var(--blue-40);
    font-size: var(--fs-body-md);
    font-weight: 400;
    line-height: 1.5;
}

.vip-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0.86rem 0 0;
}

.vip-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.52rem;
    color: var(--blue-30);
    font-size: var(--fs-body-md);
    font-weight: 400;
    line-height: 1.46;
    margin-bottom: 0.54rem;
}

.vip-benefits-list i {
    color: #67f0ab;
    margin-top: 0.15rem;
}

.vip-fit-note {
    margin-top: 0.82rem;
    border-left: 3px solid rgba(65, 173, 255, 0.56);
    padding: 0.34rem 0 0.34rem 0.7rem;
    color: var(--blue-20);
    font-size: var(--fs-body-md);
    font-weight: 400;
    line-height: 1.5;
}

.vip-plan-switch {
    margin-top: 0.86rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

.vip-pricing-card .vip-plan-switch {
    margin-top: 0.96rem;
    gap: 0.56rem;
}

.vip-plan-btn {
    border: 1px solid rgba(65, 173, 255, 0.24);
    border-radius: 0.66rem;
    background: rgba(8, 21, 35, 0.82);
    color: var(--blue-30);
    font-size: var(--fs-body-sm);
    font-weight: 500;
    line-height: 1;
    padding: 0.55rem 0.62rem;
    transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.vip-plan-btn:hover {
    color: #f3fbff;
    border-color: rgba(65, 173, 255, 0.58);
}

.vip-plan-btn.is-active {
    color: #fff;
    border-color: rgba(65, 173, 255, 0.65);
    background: linear-gradient(145deg, rgba(65, 173, 255, 0.28), rgba(18, 52, 82, 0.72));
    box-shadow: inset 0 0 0 1px rgba(65, 173, 255, 0.14), 0 0 14px rgba(65, 173, 255, 0.22);
}

.vip-plan-display {
    margin-top: 0.72rem;
    border: 1px solid rgba(65, 173, 255, 0.22);
    border-radius: 0.84rem;
    background: rgba(5, 16, 27, 0.74);
    padding: 0.72rem 0.76rem;
}

.vip-pricing-card .vip-plan-display {
    margin-top: 0.86rem;
}

.vip-plan-current-label {
    display: block;
    color: var(--blue-30);
    font-size: var(--fs-body-sm);
    font-weight: 500;
    line-height: 1;
}

.vip-plan-current-price {
    display: block;
    margin-top: 0.42rem;
    color: #f5fbff;
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-size: clamp(1.25rem, 2.1vw, 1.9rem);
    font-weight: 700;
    line-height: 1;
}

.vip-plan-current-note {
    margin: 0.46rem 0 0;
    color: var(--blue-50);
    font-size: var(--fs-body-sm);
    font-weight: 400;
    line-height: 1.4;
}

.vip-safety-note {
    margin-top: 0.78rem;
    margin-bottom: 0.68rem;
    border: 1px solid rgba(65, 173, 255, 0.2);
    border-radius: 0.72rem;
    background: rgba(7, 20, 33, 0.64);
    padding: 0.62rem 0.7rem;
    color: var(--blue-50);
    font-size: var(--fs-body-sm);
    font-weight: 300;
    line-height: 1.42;
    letter-spacing: 0.005em;
    overflow-wrap: anywhere;
}

.vip-pricing-card .vip-safety-note {
    margin-top: 0.9rem;
    margin-bottom: 0.9rem;
}

.vip-cta {
    margin-top: 0.2rem;
    width: 100%;
}

.vip-pricing-card .vip-cta {
    margin-top: 0.86rem;
}

#community.section-block {
    padding-top: 2.6rem;
    padding-bottom: 1.25rem;
}

.community-card {
    position: relative;
    --community-dome-width: min(92%, 1240px);
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 2.3rem 1.35rem 1.9rem;
    border-radius: 0;
    border: 0;
    background: transparent;
    text-align: center;
    overflow: visible;
    isolation: isolate;
}

.community-card::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: var(--community-dome-width);
    aspect-ratio: 3.3 / 1;
    height: auto;
    border: 2px solid rgba(65, 173, 255, 0.32);
    border-bottom: 0;
    border-color: rgba(65, 173, 255, 0.34) rgba(65, 173, 255, 0.22) rgba(65, 173, 255, 0) rgba(65, 173, 255, 0.22);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    box-shadow: inset 0 16px 28px rgba(65, 173, 255, 0.12);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 72%, rgba(0, 0, 0, 0.28) 88%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 72%, rgba(0, 0, 0, 0.28) 88%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: -1;
}

.community-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: var(--community-dome-width);
    aspect-ratio: 3.3 / 1;
    height: auto;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    background: radial-gradient(
        ellipse at 50% 25%,
        rgba(65, 173, 255, 0.24) 0%,
        rgba(65, 173, 255, 0.1) 34%,
        rgba(65, 173, 255, 0.04) 54%,
        rgba(65, 173, 255, 0.015) 66%,
        rgba(65, 173, 255, 0) 100%
    );
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, rgba(0, 0, 0, 0.24) 82%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 62%, rgba(0, 0, 0, 0.24) 82%, rgba(0, 0, 0, 0) 100%);
    filter: none;
    pointer-events: none;
    z-index: -1;
}

.community-social {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0.65rem;
    margin-bottom: 0.72rem;
}

.community-social span {
    width: 2.48rem;
    height: 2.48rem;
    display: grid;
    place-content: center;
    border-radius: 50%;
    border: 1px solid rgba(65, 173, 255, 0.44);
    background: rgba(10, 30, 45, 0.86);
    color: #dbefff;
    box-shadow: 0 0 18px rgba(65, 173, 255, 0.25);
}

.community-social span:nth-child(2) {
    width: 3.35rem;
    height: 3.35rem;
    font-size: 1.2rem;
    margin-bottom: 0.12rem;
    background: rgba(230, 243, 255, 0.92);
    color: #10324f;
    border-color: rgba(230, 243, 255, 0.4);
    box-shadow: 0 0 24px rgba(65, 173, 255, 0.34);
}

.community-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(65, 173, 255, 0.34);
    border-radius: 999px;
    padding: 0.27rem 0.72rem 0.2rem;
    font-size: 0.72rem;
    color: var(--blue-30);
    background: rgba(9, 25, 39, 0.84);
}

.community-card h2 {
    font-size: var(--fs-h2-display);
    margin: 0.7rem auto 0.64rem;
    max-width: 730px;
}

.community-card p {
    max-width: 670px;
    margin: 0 auto 1.25rem;
    font-size: var(--fs-body-lg);
}

.site-footer {
    position: relative;
    padding: 1.05rem 0 22rem;
    border-top: 0;
    background: linear-gradient(180deg, rgba(2, 8, 13, 0), rgba(2, 8, 13, 0.82));
    overflow: hidden;
}

.site-footer .container-xl {
    position: relative;
    z-index: 2;
}

.footer-watermark {
    position: absolute;
    left: 50%;
    bottom: -12.4rem;
    transform: translateX(-50%);
    font-family: "Space Grotesk", "Sora", sans-serif;
    font-size: clamp(7rem, 20vw, 18rem);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: 0.02em;
    white-space: pre-line;
    text-align: center;
    color: rgba(255, 255, 255, 0.11);
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.35) 22%, rgba(0, 0, 0, 0.78) 48%, #000 72%, #000 100%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.35) 22%, rgba(0, 0, 0, 0.78) 48%, #000 72%, #000 100%);
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.footer-circuit {
    position: absolute;
    bottom: 3.8rem;
    width: 170px;
    height: 178px;
    pointer-events: none;
    opacity: 0.9;
    z-index: 1;
}

.footer-circuit::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid rgba(101, 229, 189, 0.2);
    border-top: 0;
    border-right: 0;
}

.footer-circuit span {
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(103, 240, 171, 0.54);
    box-shadow: 0 0 0 3px rgba(103, 240, 171, 0.2), 0 0 16px rgba(103, 240, 171, 0.55);
}

.footer-circuit span:nth-child(1) {
    top: 36px;
    right: -7px;
}

.footer-circuit span:nth-child(2) {
    top: 106px;
    right: -7px;
}

.footer-circuit span:nth-child(3) {
    bottom: -7px;
    right: 28px;
}

.footer-circuit-left {
    left: 2.1rem;
}

.footer-circuit-right {
    right: 2.1rem;
    transform: scaleX(-1);
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-nav-main {
    gap: 2rem;
    margin-bottom: 0.86rem;
}

.footer-nav-sub {
    gap: 1.2rem;
    margin-bottom: 0.72rem;
}

.footer-nav a {
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-nav-main a {
    color: var(--blue-20);
    font-size: 1.03rem;
    font-weight: 600;
}

.footer-nav-sub a {
    color: var(--blue-50);
    font-size: 0.9rem;
    opacity: 0.96;
}

.footer-nav a:hover {
    color: #ffffff;
    opacity: 1;
}

.footer-copyline {
    margin: 0;
    color: var(--blue-50);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.animate-rise {
    animation: fadeRise 0.8s ease both;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

@keyframes fadeRise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (min-width: 992px) {
    .nav-inner {
        display: flex;
        justify-content: flex-end;
    }

    .nav-shell {
        gap: 0.16rem;
        margin: 0 auto;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .site-header .container-xl {
        max-width: 1248px;
    }

    .site-nav {
        padding: 0.5rem 0.78rem;
    }

    .brand {
        gap: 0.5rem;
    }

    .brand-logo {
        width: 2.05rem;
        height: 2.05rem;
    }

    .brand-text {
        font-size: 1rem;
        letter-spacing: 0.075em;
    }

    .nav-inner {
        gap: 0.38rem;
    }

    .nav-shell {
        padding: 0.14rem;
        gap: 0.04rem;
    }

    .nav-shell .nav-link {
        font-size: 0.86rem;
        height: 1.78rem;
        padding: 0 0.5rem;
    }

    .lang-switch {
        margin-right: 0.2rem;
        padding: 0.16rem;
    }

    .lang-btn {
        min-width: 2rem;
        font-size: 0.67rem;
        padding: 0.3rem 0.44rem 0.28rem;
    }

    .btn-login {
        min-width: 132px;
        font-size: 0.88rem;
        padding: 0.44rem 0.9rem 0.36rem;
        gap: 0.34rem;
    }
}

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

    .hero-side {
        grid-column: 1 / -1;
    }

    .floating-a {
        left: 24%;
    }

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

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

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

@media (max-width: 991.98px) {
    .section-block {
        padding: 3.55rem 0;
    }

    .section-tight {
        padding-top: 1.65rem;
    }

    #community.section-block {
        padding-top: 2.25rem;
        padding-bottom: 0.95rem;
    }

    .site-footer {
        padding-top: 0.85rem;
        padding-bottom: 15rem;
    }

    .footer-circuit {
        display: none;
    }

    .footer-watermark {
        font-size: clamp(6rem, 24vw, 12rem);
        bottom: -10.2rem;
    }

    .footer-nav-main {
        gap: 1.35rem;
    }

    .footer-nav-main a {
        font-size: 0.94rem;
    }

    .footer-nav-sub {
        gap: 0.85rem;
    }

    .footer-nav-sub a,
    .footer-copyline {
        font-size: 0.82rem;
    }

    .site-header {
        top: 0.35rem;
    }

    .site-nav {
        border-radius: 1rem;
        padding: 0.7rem 0.9rem;
    }

    .brand-text {
        font-size: 1rem;
        letter-spacing: 0.09em;
    }

    .brand-logo {
        width: 2.16rem;
        height: 2.16rem;
    }

    .nav-inner {
        padding-top: 0.7rem;
    }

    .nav-shell {
        border-radius: 0.78rem;
        width: 100%;
        margin-top: 0.8rem;
        margin-bottom: 0.7rem;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 0.4rem;
    }

    .nav-shell .nav-link {
        display: flex;
        text-align: center;
        font-size: 0.9rem;
        min-height: 0;
        padding: 0.56rem 0.62rem;
    }

    .btn-login {
        width: 100%;
        text-align: center;
        font-size: 0.95rem;
    }

    .lang-switch {
        margin-right: 0;
        margin-bottom: 0.6rem;
    }

    .hero-section {
        padding-top: 2.9rem;
    }

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

    .hero-beam,
    .hero-floating {
        display: none;
    }

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

    .chart-market-switch {
        width: 100%;
        justify-content: flex-start;
    }

    .chart-surface {
        min-height: 220px;
    }

    #marketCandleCanvas {
        min-height: 220px;
    }

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

    .trust-item {
        min-width: 156px;
        font-size: 0.94rem;
    }

    .table-actions {
        align-items: flex-start;
    }

    .coin-ticker {
        gap: 0.7rem;
        padding: 0 0.4rem;
    }

    .coin-chip {
        font-size: 0.9rem;
        padding: 0.52rem 0.94rem;
    }

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

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

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

    .vip-layout {
        grid-template-columns: 1fr;
        gap: 0.82rem;
    }

    .track-record-shell {
        padding: 0.84rem;
    }

    .track-record-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .track-record-chart-shell {
        grid-template-columns: auto auto;
        justify-content: center;
        gap: 0.62rem;
    }

    .features-intro {
        margin-bottom: 1.55rem;
    }

    .features-title-wrap {
        max-width: 100%;
    }

    .features-intro-copy {
        margin-top: 0.05rem;
        max-width: 100%;
    }

    .feature-card {
        min-height: 236px;
    }

    .feature-card-body {
        max-width: 88%;
        margin-top: 6.55rem;
    }

    .coins-visual {
        margin-top: 1.95rem;
        padding: 0.82rem 0 0.9rem;
    }

    .coins-visual::before {
        width: min(96vw, 760px);
        height: clamp(300px, 50vw, 360px);
    }

    .community-card {
        --community-dome-width: 95%;
        padding: 2.05rem 0.9rem 1.45rem;
    }

    .community-card::before {
        bottom: 0;
    }

    .community-card::after {
        bottom: 0;
    }

    .community-card h2 {
        font-size: clamp(1.95rem, 5.2vw, 2.7rem);
    }

    .hub-curve::before {
        display: none;
    }
}

@media (max-width: 767.98px) {
    #community.section-block {
        padding-top: 1.8rem;
        padding-bottom: 0.82rem;
    }

    .community-card {
        --community-dome-width: 97%;
        padding: 1.4rem 0.9rem 1.15rem;
        border-radius: 1rem;
        border: 1px solid rgba(65, 173, 255, 0.26);
        background: linear-gradient(160deg, rgba(13, 43, 76, 0.44), rgba(4, 13, 22, 0.92));
        box-shadow: var(--shadow-deep);
        overflow: hidden;
    }

    .community-card::before,
    .community-card::after {
        display: none;
    }

    .trust-item {
        min-height: 66px;
        min-width: 146px;
    }

    .footer-watermark {
        bottom: -8.8rem;
    }
}

@media (max-width: 575.98px) {
    .section-block {
        padding: 3.2rem 0;
    }

    .section-tight {
        padding-top: 1.45rem;
    }

    #community.section-block {
        padding-top: 1.8rem;
        padding-bottom: 0.78rem;
    }

    .site-footer {
        padding-top: 0.65rem;
        padding-bottom: 11rem;
    }

    .footer-watermark {
        font-size: clamp(4.8rem, 29vw, 7.6rem);
        bottom: -7.2rem;
    }

    .footer-nav-main {
        gap: 0.85rem;
        margin-bottom: 0.66rem;
    }

    .footer-nav-main a {
        font-size: 0.86rem;
    }

    .footer-nav-sub {
        gap: 0.56rem 0.86rem;
        margin-bottom: 0.6rem;
    }

    .footer-nav-sub a,
    .footer-copyline {
        font-size: 0.75rem;
    }

    .brand-logo {
        width: 1.98rem;
        height: 1.98rem;
    }

    .trust-shell {
        padding: 0;
    }

    .trust-heading h2 {
        font-size: clamp(1.95rem, 7.2vw, 2.45rem);
    }

    .section-heading h2,
    .features-title-wrap h2 {
        font-size: clamp(1.95rem, 7.2vw, 2.45rem);
    }

    .vip-kicker {
        font-size: 0.7rem;
        padding: 0.3rem 0.66rem 0.24rem;
    }

    .trust-item {
        min-width: 136px;
        font-size: 0.9rem;
        justify-content: center;
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }

    .brand-text {
        font-size: 0.9rem;
        letter-spacing: 0.08em;
    }

    .hero-copy,
    .trade-panel,
    .hero-side,
    .content-panel,
    .dashboard-card,
    .table-shell,
    .testimonial-card {
        padding: 0.95rem;
    }

    .hero-copy h1 {
        font-size: 2rem;
    }

    #marketCandleCanvas {
        min-height: 200px;
    }

    .chart-market-btn {
        font-size: 0.64rem;
        padding: 0.24rem 0.45rem 0.2rem;
    }

    .chart-overlay {
        left: 0.5rem;
        top: 0.5rem;
        gap: 0.45rem;
        padding: 0.3rem 0.52rem 0.24rem;
    }

    .chart-overlay strong {
        font-size: 0.72rem;
    }

    .chart-overlay span {
        font-size: 0.68rem;
    }

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

    .market-section .section-heading h2 {
        font-size: clamp(1.95rem, 7.2vw, 2.45rem);
    }

    .track-record-shell {
        padding: 0.78rem;
    }

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

    .track-record-chart-shell {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 0.58rem;
        padding: 0.56rem 0.58rem;
    }

    .track-record-chart-canvas-wrap {
        width: min(170px, 54vw);
    }

    .track-record-chart-legend {
        width: max-content;
        gap: 0.3rem;
    }

    .track-record-chart-legend li,
    .track-record-chart-legend strong {
        font-size: 0.74rem;
    }

    .track-record-table th {
        font-size: 0.68rem;
        padding: 0.6rem 0.62rem;
    }

    .track-record-table td {
        font-size: 0.8rem;
        padding: 0.56rem 0.62rem;
    }

    .coin-ticker-fade {
        padding: 0.25rem 0;
    }

    .coin-ticker {
        gap: 0.62rem;
        padding: 0 0.28rem;
    }

    .coin-chip {
        font-size: 0.82rem;
        padding: 0.46rem 0.78rem;
    }

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

    .feature-kicker {
        font-size: 0.72rem;
    }

    .feature-card {
        min-height: 220px;
        padding: 0.92rem;
    }

    .feature-card-media {
        font-size: 4.5rem;
        top: 0.62rem;
        right: 0.7rem;
    }

    .feature-card-review .feature-card-media {
        font-size: 4.8rem;
    }

    .feature-card-body {
        max-width: 100%;
        margin-top: 5.7rem;
    }

    .feature-card h3 {
        font-size: var(--fs-h3-compact);
    }

    .testimonial-grid {
        margin-top: 1.45rem;
    }

    .testimonial-meta h3 {
        font-size: var(--fs-h3-meta);
    }

    .testimonial-card p {
        font-size: var(--fs-body-md);
    }

    .vip-plan-switch {
        gap: 0.42rem;
    }

    .vip-pricing-card .vip-plan-switch {
        margin-top: 0.82rem;
        gap: 0.44rem;
    }

    .vip-plan-btn {
        font-size: 0.78rem;
        padding: 0.5rem 0.52rem;
    }

    .vip-plan-current-price {
        font-size: 1.14rem;
    }

    .vip-plan-current-note {
        font-size: 0.8rem;
    }

    .vip-pricing-card .vip-plan-display {
        margin-top: 0.72rem;
    }

    .vip-safety-note {
        font-size: 0.78rem;
        line-height: 1.38;
        padding: 0.56rem 0.6rem;
    }

    .vip-pricing-card .vip-safety-note {
        margin-top: 0.74rem;
        margin-bottom: 0.72rem;
    }

    .testimonial-form-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-form-actions {
        align-items: stretch;
    }

    .testimonial-form-actions .btn {
        width: 100%;
    }

    .community-social span {
        width: 2.2rem;
        height: 2.2rem;
    }

    .community-social span:nth-child(2) {
        width: 2.9rem;
        height: 2.9rem;
    }

    .community-card h2 {
        font-size: clamp(1.95rem, 7.2vw, 2.45rem);
    }

    .community-card p {
        font-size: var(--fs-body-lg);
    }

    .coins-area .section-heading {
        margin-bottom: 0.82rem;
    }

    .coins-area-cta {
        margin-top: 0.08rem;
    }

    .coins-visual {
        margin-top: 1.7rem;
        padding: 0.52rem 0 0.58rem;
    }

    .coins-visual::before {
        width: min(96vw, 420px);
        height: clamp(272px, 80vw, 320px);
        border-radius: 1.05rem;
    }

    .orbit-wrap {
        width: min(94vw, 332px);
        --orbit-radius: 164px;
        margin: 0 auto;
    }

    .orbit-node {
        width: 2.72rem;
        height: 2.72rem;
    }
}
