* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    background:
        radial-gradient(circle at 12% 6%, rgba(84, 134, 255, 0.22), transparent 20%),
        radial-gradient(circle at 88% 10%, rgba(165, 74, 255, 0.16), transparent 18%),
        radial-gradient(circle at 50% 100%, rgba(38, 161, 123, 0.08), transparent 22%),
        linear-gradient(180deg, #051034 0%, #0a1a56 48%, #071647 100%);
    color: #fff;
    overflow-x: hidden;
    letter-spacing: .12px;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

:root {
    --gold: #f0bf31;
    --gold2: #ffe07d;
    --green: #26A17B;
    --cyan: #73d7ff;
    --line: rgba(118, 178, 255, .14);
    --card-line: rgba(255, 255, 255, .08);
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, .20);
    --shadow-card: 0 26px 60px rgba(0, 0, 0, .26);
    --glass: rgba(8, 28, 83, 0.56);
    --glass-strong: rgba(7, 24, 75, 0.78);
}

.page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 10%, rgba(72, 128, 255, 0.18), transparent 20%),
        radial-gradient(circle at 84% 16%, rgba(183, 65, 255, 0.16), transparent 16%),
        radial-gradient(circle at 78% 68%, rgba(33, 199, 255, 0.10), transparent 22%),
        linear-gradient(180deg, #07133f 0%, #0b1a57 45%, #081647 100%);
}

.page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 76% 46%, rgba(255, 255, 255, 0.14) 0 2px, transparent 4px),
        radial-gradient(circle at 70% 53%, rgba(255, 255, 255, 0.08) 0 3px, transparent 6px),
        radial-gradient(circle at 79% 60%, rgba(255, 255, 255, 0.14) 0 2px, transparent 5px),
        radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.14) 0 2px, transparent 4px),
        radial-gradient(circle at 9% 89%, rgba(255, 255, 255, 0.14) 0 1.5px, transparent 3px),
        radial-gradient(circle at 88% 78%, rgba(255, 255, 255, 0.14) 0 2px, transparent 4px);
    opacity: .82;
}

.page::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .02) 50%, transparent 100%),
        radial-gradient(circle at 28% 30%, rgba(255, 255, 255, .02), transparent 20%),
        radial-gradient(circle at 76% 62%, rgba(255, 255, 255, .03), transparent 24%);
}

.topbar {
    position: sticky;
    top: 10px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px;
    max-width: 1240px;
    margin: 12px auto 0;
    background: linear-gradient(180deg, rgba(7, 19, 63, 0.88), rgba(7, 19, 63, 0.56));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, .18),
        inset 0 1px 0 rgba(255, 255, 255, .04);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: 1.2px;
    color: #fff;
    font-size: 15px;
    text-shadow: 0 4px 14px rgba(0, 0, 0, .22);
}

.brand-mark {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    position: relative;
    background: linear-gradient(180deg, #ffe58e, var(--gold));
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .08),
        0 0 18px rgba(255, 202, 45, 0.34),
        0 8px 18px rgba(240, 191, 49, .22);
    flex-shrink: 0;
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    background: #16215d;
    border-radius: 50%;
}

.brand-mark::before {
    width: 5px;
    height: 5px;
    left: 4px;
    top: 5px;
}

.brand-mark::after {
    width: 9px;
    height: 5px;
    left: 6px;
    bottom: 4px;
    border-radius: 0 0 10px 10px;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.lang-btn {
    border: 0;
    color: rgba(255, 255, 255, .82);
    background: transparent;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    cursor: pointer;
    transition: .25s ease;
}

.lang-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.lang-btn.active {
    background: linear-gradient(90deg, var(--gold), #ffe792);
    color: #122257;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(240, 191, 49, .24);
}

.hero {
    position: relative;
    padding: 70px 16px 62px;
    overflow: hidden;
    z-index: 2;
}

.hero-bg,
.hero-bg-2,
.hero-overlay-grid,
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg {
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(3, 7, 26, .94) 0%, rgba(4, 10, 34, .80) 28%, rgba(7, 19, 55, .50) 56%, rgba(4, 8, 26, .92) 100%),
        url('mining_banner-CZDX2G9b.jpg') center center / cover no-repeat;
    filter: saturate(1.12) contrast(1.08);
    transform: scale(1.03);
}

.hero-bg-2 {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(54, 14, 126, 0.12), rgba(14, 38, 118, 0.20)),
        url('header-DS3NhR68.jpg') center center / cover no-repeat;
    mix-blend-mode: screen;
    opacity: .22;
}

.hero-overlay-grid {
    z-index: 2;
    background:
        linear-gradient(transparent 96%, rgba(155, 206, 255, .07) 100%),
        linear-gradient(90deg, transparent 96%, rgba(155, 206, 255, .05) 100%);
    background-size: 100% 46px, 84px 100%;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
    opacity: .34;
}

.hero-particles {
    z-index: 3;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 0 12px rgba(118, 196, 255, .6);
    opacity: .55;
    animation: particleFloat linear infinite;
}

.particle.p2 {
    width: 3px;
    height: 3px;
    opacity: .38;
}

.particle.p3 {
    width: 2px;
    height: 2px;
    opacity: .28;
}

@keyframes particleFloat {
    0% {
        transform: translate3d(0, 30px, 0) scale(.8);
        opacity: 0;
    }

    15% {
        opacity: .55;
    }

    85% {
        opacity: .5;
    }

    100% {
        transform: translate3d(0, -120px, 0) scale(1.15);
        opacity: 0;
    }
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 18%, rgba(233, 40, 176, 0.14), transparent 12%),
        radial-gradient(circle at 72% 54%, rgba(87, 73, 255, 0.18), transparent 18%),
        radial-gradient(circle at 15% 20%, rgba(62, 149, 255, 0.18), transparent 20%),
        linear-gradient(180deg, transparent 0%, rgba(5, 12, 36, .24) 100%);
}

.hero-inner {
    position: relative;
    z-index: 6;
    max-width: 1240px;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    gap: 22px;
    align-items: stretch;
}

.hero-left,
.hero-right {
    min-width: 0;
}

.hero-line {
    width: 104px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), rgba(255, 216, 107, .18));
    margin-bottom: 18px;
    box-shadow: 0 0 22px rgba(240, 191, 49, .40);
    border-radius: 999px;
}

.hero-copy-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(96, 164, 255, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03)),
        url('home-bg-p1klazcP.jpg') center center / cover no-repeat;
    backdrop-filter: blur(14px);
    box-shadow:
        0 24px 56px rgba(0, 0, 0, .24),
        inset 0 1px 0 rgba(255, 255, 255, .05);
    overflow: hidden;
}

.hero-copy-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 15, 45, .82), rgba(6, 15, 45, .66)),
        radial-gradient(circle at 86% 16%, rgba(240, 191, 49, .12), transparent 18%);
    pointer-events: none;
}

.hero-copy-card::after,
.hero-download-card::after,
.hero-panel::after,
.glass-card::after,
.mined-panel::after,
.about-intro-card::after,
.service-card::after,
.stats-card::after,
.team-card::after,
.faq-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .10), transparent);
    transform: skewX(-18deg);
    animation: sweepGlow 5.5s linear infinite;
    pointer-events: none;
}

@keyframes sweepGlow {
    0% {
        left: -120%;
    }

    100% {
        left: 150%;
    }
}

.hero-copy-top,
.hero-fill-card {
    position: relative;
    z-index: 2;
}

.hero-copy-tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(240, 191, 49, .14);
    border: 1px solid rgba(240, 191, 49, .24);
    color: var(--gold2);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;
    margin-bottom: 14px;
    width: fit-content;
}

.hero-title {
    font-size: clamp(48px, 5vw, 76px);
    line-height: .96;
    font-weight: 900;
    letter-spacing: .15px;
    text-shadow: 0 16px 36px rgba(0, 0, 0, .42);
    max-width: 620px;
}

.hero-title span {
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #edf2ff 44%, #bfd0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    margin-top: 14px;
    max-width: 620px;
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .88);
}

.hero-badges {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badge {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .10);
    font-size: 12px;
    color: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .06),
        0 8px 18px rgba(0, 0, 0, .10);
    transition: .25s ease;
}

.hero-badge:hover {
    transform: translateY(-1px);
    border-color: rgba(240, 191, 49, .20);
}

.hero-badge strong {
    color: var(--gold2);
    margin-right: 5px;
}

.hero-fill-card {
    position: relative;
    height: 258px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(118, 178, 255, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01));
    box-shadow: 0 20px 40px rgba(0, 0, 0, .18);
    backdrop-filter: blur(10px);
    margin-top: 2px;
}

.hero-fill-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 15, 45, .12), rgba(6, 15, 45, .34));
    pointer-events: none;
    z-index: 1;
}

.hero-fill-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
    pointer-events: none;
    z-index: 5;
}

.hero-fill-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 22% 25%, rgba(255, 196, 67, .18), transparent 18%),
        radial-gradient(circle at 82% 72%, rgba(111, 125, 255, .16), transparent 22%),
        url('minedblocksbg-CGdEkm5l.jpg') center center / cover no-repeat;
    opacity: .35;
    transform: scale(1.06);
}

.hero-fill-main {
    position: absolute;
    left: 24px;
    bottom: 10px;
    width: 74%;
    max-width: 720px;
    height: calc(100% - 22px);
    object-fit: contain;
    object-position: left center;
    z-index: 2;
    filter: drop-shadow(0 22px 40px rgba(0, 0, 0, .30));
}

.hero-fill-side {
    position: absolute;
    right: -4px;
    bottom: -8px;
    height: 88%;
    width: auto;
    max-width: 32%;
    object-fit: contain;
    z-index: 3;
    opacity: .95;
    filter: drop-shadow(0 16px 26px rgba(0, 0, 0, .34));
}

.hero-fill-badge {
    position: absolute;
    left: 14px;
    /* top: 14px; */
    z-index: 4;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(240, 191, 49, .16);
    border: 1px solid rgba(240, 191, 49, .24);
    color: #ffe7a0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .3px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .14);
}

.hero-right {
    display: grid;
    grid-template-rows: auto auto;
    gap: 16px;
    align-content: start;
}

.hero-side-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.hero-download-card {
    position: relative;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(11, 31, 89, .78), rgba(8, 24, 72, .58));
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .05),
        0 14px 28px rgba(0, 0, 0, .18);
    overflow: hidden;
}

.hero-download-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.hero-download-title {
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 6px;
}

.hero-download-desc-small {
    font-size: 12px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .74);
    max-width: 360px;
}

.hero-access-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(240, 191, 49, .14);
    border: 1px solid rgba(240, 191, 49, .24);
    color: var(--gold2);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .3px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.hero-platform-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
}

.hero-platform-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
    transition: .28s ease;
    position: relative;
    overflow: hidden;
}

.hero-platform-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .06), transparent 42%);
    pointer-events: none;
}

.hero-platform-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(240, 191, 49, .24);
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 12px 22px rgba(0, 0, 0, .16);
}

.hero-platform-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.hero-platform-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .10);
    font-size: 12px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.hero-platform-arrow {
    color: var(--gold2);
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.hero-panel {
    position: relative;
    width: 100%;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .22);
    overflow: hidden;
    z-index: 2;
}

.mini-label {
    font-size: 11px;
    color: #9ab8ff;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.hero-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.metric {
    padding: 14px;
    border-radius: 16px;
    background: rgba(7, 28, 79, 0.62);
    border: 1px solid rgba(101, 165, 255, 0.12);
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .04),
        0 10px 20px rgba(0, 0, 0, .10);
    transition: .25s ease;
}

.metric:hover {
    transform: translateY(-2px);
    border-color: rgba(115, 215, 255, .22);
}

.metric::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .05), transparent 42%),
        radial-gradient(circle at 88% 10%, rgba(255, 255, 255, .06), transparent 16%);
    pointer-events: none;
}

.metric strong {
    display: block;
    color: #fff;
    font-size: 20px;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.metric span {
    font-size: 11px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.metric-usdt::after {
    content: '₮';
    position: absolute;
    right: 10px;
    top: 8px;
    font-size: 24px;
    color: rgba(38, 161, 123, .18);
    font-weight: 900;
}

.content-wrap {
    position: relative;
    z-index: 6;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px 44px;
}

.shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(122, 177, 255, 0.12);
    background: linear-gradient(180deg, rgba(4, 33, 84, 0.94), rgba(5, 35, 95, 0.82));
    box-shadow: 0 24px 52px rgba(0, 0, 0, .24);
}

.shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(68, 122, 203, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(68, 122, 203, 0.08) 1px, transparent 1px);
    background-size: 100% 56px, 120px 100%;
    pointer-events: none;
    z-index: 1;
}

.shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 19, 54, 0.84), rgba(9, 22, 63, 0.80)),
        url('about-bg-CFn5cLZS.jpg') center top / cover no-repeat;
    opacity: 0.16;
    z-index: 0;
    pointer-events: none;
}

.inner {
    position: relative;
    z-index: 2;
    padding: 28px 18px 24px;
}

.headline {
    text-align: center;
    margin-bottom: 24px;
}

.eyebrow {
    font-size: 12px;
    color: rgba(255, 255, 255, .88);
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-style: italic;
}

.eyebrow::after {
    content: "";
    display: block;
    width: 86px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #ffe792);
    margin: 10px auto 0;
    box-shadow: 0 0 12px rgba(240, 191, 49, .32);
    border-radius: 999px;
}

.headline h2 {
    font-size: 34px;
    line-height: 1.18;
    font-weight: 900;
    margin-bottom: 8px;
    text-shadow: 0 6px 22px rgba(0, 0, 0, .16);
}

.headline p {
    font-size: 13px;
    color: rgba(255, 255, 255, .88);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.85;
}

.main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .96fr);
    gap: 18px;
    align-items: stretch;
}

.glass-card,
.mined-panel,
.faq-card {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(96, 164, 255, 0.16);
    background: rgba(7, 31, 83, 0.48);
    backdrop-filter: blur(12px);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.glass-card {
    padding: 20px;
    background: linear-gradient(180deg, rgba(9, 32, 87, .74), rgba(9, 32, 87, .52));
}

.join-eyebrow {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(240, 191, 49, 0.12);
    border: 1px solid rgba(240, 191, 49, 0.24);
    color: var(--gold2);
    font-size: 11px;
    letter-spacing: .8px;
    margin-bottom: 10px;
    font-weight: 800;
}

.join-headline {
    font-size: 26px;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 10px;
    color: #fff;
}

.glass-card h3,
.mined-head h3,
.about-intro-card h3,
.service-card h4,
.team-card h4,
.faq-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.glass-card p,
.mined-head p,
.about-intro-card p,
.service-card p,
.team-card p {
    font-size: 13px;
    line-height: 1.85;
    color: rgba(255, 255, 255, .82);
    position: relative;
    z-index: 2;
}

.join-highlight {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(240, 191, 49, 0.14), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(240, 191, 49, 0.18);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    line-height: 1.85;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .04),
        0 10px 20px rgba(0, 0, 0, .08);
}

.join-highlight b {
    color: var(--gold2);
}

.usdt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(38, 161, 123, 0.16);
    border: 1px solid rgba(38, 161, 123, 0.28);
    color: #d8fff0;
    font-size: 12px;
    font-weight: 800;
    margin-top: 14px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .04),
        0 10px 18px rgba(0, 0, 0, .08);
}

.usdt-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #26A17B;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 0 0 4px rgba(38, 161, 123, .14);
    flex-shrink: 0;
}

.join-visual {
    margin-top: 16px;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background:
        radial-gradient(circle at 50% 14%, rgba(255, 215, 94, .16), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01));
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .04),
        0 16px 28px rgba(0, 0, 0, .10);
}

.join-visual-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 25%, rgba(255, 188, 64, .18), transparent 18%),
        radial-gradient(circle at 15% 80%, rgba(90, 112, 255, .18), transparent 24%),
        url('home-bg-p1klazcP.jpg') center center / cover no-repeat;
    opacity: .28;
    transform: scale(1.08);
}

.join-visual img.main-illus {
    position: relative;
    z-index: 2;
    width: 76%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .28));
}

.join-visual-server {
    position: absolute;
    right: 8px;
    bottom: -6px;
    width: 36%;
    z-index: 3;
    object-fit: contain;
    opacity: .94;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .24));
}

.join-visual img.float-coin {
    position: absolute;
    right: 12px;
    top: 10px;
    width: 96px;
    z-index: 4;
    opacity: .95;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .24));
    animation: floatCoin 6s ease-in-out infinite;
    object-fit: contain;
}

@keyframes floatCoin {

    0%,
    100% {
        transform: translateY(0px) rotate(-4deg);
    }

    50% {
        transform: translateY(-10px) rotate(4deg);
    }
}

.safe-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.point {
    padding: 12px 12px 12px 14px;
    border-radius: 14px;
    background: rgba(12, 47, 108, 0.58);
    border: 1px solid rgba(101, 165, 255, 0.12);
    color: rgba(255, 255, 255, .88);
    font-size: 12px;
    line-height: 1.7;
    position: relative;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .04),
        0 10px 18px rgba(0, 0, 0, .08);
    transition: .25s ease;
}

.point:hover {
    transform: translateY(-1px);
    border-color: rgba(240, 191, 49, .14);
}

.point::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px rgba(240, 191, 49, .42);
}

.point span {
    display: block;
    padding-left: 14px;
}

.mined-panel {
    padding: 20px;
    background:
        linear-gradient(180deg, rgba(6, 22, 67, .84), rgba(7, 24, 75, .72)),
        url('home-bg-p1klazcP.jpg') center center / cover no-repeat;
}

.mined-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 13, 44, .88) 0%, rgba(7, 17, 54, .70) 38%, rgba(6, 16, 52, .82) 100%),
        radial-gradient(circle at 88% 12%, rgba(240, 191, 49, .10), transparent 18%);
    pointer-events: none;
    z-index: 0;
}

.mined-content {
    position: relative;
    z-index: 2;
}

.mined-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.mined-icon {
    width: 82px;
    opacity: .98;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .24));
    flex-shrink: 0;
    object-fit: contain;
}

.currency-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.currency-card {
    position: relative;
    overflow: hidden;
    padding: 16px 14px;
    min-height: 102px;
    border-radius: 18px;
    background: rgba(9, 31, 86, 0.58);
    border: 1px solid rgba(114, 173, 255, 0.14);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .04),
        0 12px 24px rgba(0, 0, 0, .10);
    transition: .25s ease;
}

.currency-card:hover {
    transform: translateY(-2px);
    border-color: rgba(240, 191, 49, .16);
}

.currency-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .04), transparent 44%),
        radial-gradient(circle at 85% 15%, rgba(240, 191, 49, .10), transparent 22%);
    pointer-events: none;
}

.currency-top {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.currency-icon-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, .03),
        0 8px 18px rgba(0, 0, 0, .12);
    background: rgba(255, 255, 255, .06);
}

.currency-info {
    min-width: 0;
    flex: 1;
}

.currency-name {
    font-size: 13px;
    color: rgba(255, 255, 255, .96);
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.35;
    letter-spacing: .2px;
}

.currency-note {
    font-size: 11px;
    color: rgba(255, 255, 255, .66);
    line-height: 1.5;
    letter-spacing: .1px;
}

.currency-value-block {
    position: relative;
    z-index: 1;
    text-align: right;
    flex-shrink: 0;
    min-width: 68px;
    padding-left: 4px;
}

.currency-value {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0;
    min-height: 24px;
    text-align: right;
    letter-spacing: .3px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, .12);
}

.currency-card.highlight {
    background: linear-gradient(180deg, rgba(240, 191, 49, .12), rgba(9, 31, 86, .66));
    border-color: rgba(240, 191, 49, .24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .05),
        0 0 0 1px rgba(240, 191, 49, .04),
        0 14px 28px rgba(0, 0, 0, .12);
}

.currency-card.highlight .currency-value {
    color: var(--gold2);
    text-shadow: 0 0 16px rgba(240, 191, 49, .16);
}

.bottom-row {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.about-section {
    display: grid;
    gap: 18px;
}

.section-head {
    margin-bottom: 2px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(240, 191, 49, 0.12);
    border: 1px solid rgba(240, 191, 49, 0.24);
    color: var(--gold2);
    font-size: 11px;
    letter-spacing: .8px;
    margin-bottom: 10px;
    font-weight: 800;
}

.about-intro-card,
.service-card,
.stats-card,
.team-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(96, 164, 255, 0.16);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
}

.about-intro-card {
    border-radius: 26px;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(7, 31, 83, .58), rgba(7, 31, 83, .42)),
        url('about-bg-CFn5cLZS.jpg') center center / cover no-repeat;
}

.about-intro-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 15, 45, .88), rgba(6, 15, 45, .56));
    pointer-events: none;
}

.about-intro-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(220px, .82fr);
    gap: 18px;
    align-items: center;
}

.about-intro-card h3 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.about-intro-card p+p {
    margin-top: 12px;
}

.about-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    min-height: 240px;
}

.about-visual-ring {
    position: absolute;
    right: 10px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 211, 86, .22), rgba(255, 211, 86, 0) 62%);
    filter: blur(4px);
}

.about-main-visual {
    width: 100%;
    max-width: 260px;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .28));
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.service-section,
.stats-section,
.team-section {
    display: grid;
    gap: 14px;
}

.team-section {
    display: grid;
    gap: 14px;
    overflow: hidden;
}

.team-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.team-track {
    display: flex;
    align-items: stretch;
    width: max-content;
    gap: 14px;
    animation: teamScrollLTR 38s linear infinite;
}

.team-marquee:hover .team-track {
    animation-play-state: paused;
}

.team-grid-scroll {
    display: flex;
    align-items: stretch;
    gap: 14px;
}

.team-grid-scroll .team-card {
    width: 340px;
    min-width: 340px;
    border-radius: 22px;
    padding: 18px 16px;
    background: linear-gradient(180deg, rgba(9, 32, 87, .70), rgba(9, 32, 87, .46));
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(96, 164, 255, 0.16);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
}

.team-grid-scroll .team-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .04), transparent 42%),
        radial-gradient(circle at 84% 14%, rgba(240, 191, 49, .10), transparent 20%);
    pointer-events: none;
}

.team-card-featured {
    background: linear-gradient(180deg, rgba(240, 191, 49, .08), rgba(9, 32, 87, .62)) !important;
    border-color: rgba(240, 191, 49, .20) !important;
}

.team-person-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, .12);
    box-shadow:
        0 0 0 6px rgba(255, 255, 255, .03),
        0 12px 22px rgba(0, 0, 0, .16);
    background: rgba(255, 255, 255, .06);
}

.team-grid-scroll .team-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.team-grid-scroll .team-card p {
    font-size: 13px;
    line-height: 1.85;
    color: rgba(255, 255, 255, .82);
    position: relative;
    z-index: 2;
}

.team-role {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    font-size: 11px;
    color: var(--gold2);
    margin-bottom: 10px;
    font-weight: 700;
}

@keyframes teamScrollLTR {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.service-card {
    border-radius: 22px;
    padding: 18px 16px;
    background: linear-gradient(180deg, rgba(9, 32, 87, .70), rgba(9, 32, 87, .46));
}

.service-card::before,
.stats-card::before,
.team-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .04), transparent 42%),
        radial-gradient(circle at 84% 14%, rgba(240, 191, 49, .10), transparent 20%);
    pointer-events: none;
}

.service-card h4 {
    font-size: 16px;
    line-height: 1.35;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.stats-card {
    border-radius: 22px;
    padding: 20px 16px;
    text-align: center;
    background: linear-gradient(180deg, rgba(9, 31, 86, 0.58), rgba(9, 31, 86, 0.40));
}

.stats-card strong {
    position: relative;
    z-index: 2;
    display: block;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    color: var(--gold2);
    margin-bottom: 10px;
    text-shadow: 0 8px 20px rgba(0, 0, 0, .16);
}

.stats-card span {
    position: relative;
    z-index: 2;
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.team-card {
    border-radius: 22px;
    padding: 18px 16px;
    background: linear-gradient(180deg, rgba(9, 32, 87, .70), rgba(9, 32, 87, .46));
}

.team-card-featured {
    background:
        linear-gradient(180deg, rgba(240, 191, 49, .08), rgba(9, 32, 87, .62));
    border-color: rgba(240, 191, 49, .20);
}

.team-person-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, .12);
    box-shadow:
        0 0 0 6px rgba(255, 255, 255, .03),
        0 12px 22px rgba(0, 0, 0, .16);
    background: rgba(255, 255, 255, .06);
}

.team-role {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    font-size: 11px;
    color: var(--gold2);
    margin-bottom: 10px;
    font-weight: 700;
}

.faq-card {
    margin-top: 18px;
    padding: 22px 16px 8px;
    background:
        linear-gradient(180deg, rgba(7, 31, 83, .64), rgba(7, 31, 83, .42)),
        url('header-DS3NhR68.jpg') center center / cover no-repeat;
}

.faq-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 15, 45, .84), rgba(6, 15, 45, .64));
    pointer-events: none;
    z-index: 0;
}

.faq-inner {
    position: relative;
    z-index: 2;
}

.faq-title {
    text-align: center;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: .5px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, .16);
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.faq-item {
    border-radius: 16px;
    background: rgba(11, 36, 92, 0.50);
    border: 1px solid rgba(111, 173, 255, 0.12);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .04),
        0 12px 22px rgba(0, 0, 0, .10);
    transition: .25s ease;
}

.faq-item:hover {
    transform: translateY(-1px);
    border-color: rgba(240, 191, 49, .14);
}

.faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .04), transparent 42%);
    pointer-events: none;
}

.faq-btn {
    width: 100%;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    text-align: left;
    padding: 15px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.faq-q {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.65;
    color: #fff;
    flex: 1;
}

.faq-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    font-size: 14px;
    color: var(--gold2);
    flex-shrink: 0;
    transition: transform .3s ease, background .25s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    background: rgba(240, 191, 49, .12);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    position: relative;
    z-index: 1;
}

.faq-content-inner {
    padding: 0 16px 16px;
    font-size: 13px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .82);
}

.faq-content-inner a {
    color: var(--gold2);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    line-height: 1.9;
    text-align: center;
    white-space: pre-line;
}

@media (max-width: 980px) {
    .team-grid-scroll .team-card {
        width: 300px;
        min-width: 300px;
    }

    .topbar {
        position: relative;
        top: 0;
        margin-top: 0;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        border-top: 0;
        max-width: none;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border-bottom: 0;
        padding: 14px 16px 14px;
    }

    .hero {
        padding: 46px 16px 50px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero-copy-card {
        padding: 20px;
        border-radius: 22px;
    }

    .hero-title {
        font-size: 50px;
        max-width: none;
    }

    .hero-subtitle {
        max-width: none;
        font-size: 14px;
    }

    .hero-fill-card {
        height: 230px;
        border-radius: 20px;
    }

    .hero-fill-main {
        width: 72%;
        left: 18px;
    }

    .hero-fill-side {
        max-width: 30%;
        height: 78%;
    }

    .hero-download-card,
    .hero-panel {
        padding: 16px;
        border-radius: 20px;
    }

    .metric strong {
        font-size: 18px;
    }

    .metric span {
        font-size: 10px;
    }

    .content-wrap {
        padding: 0 16px 40px;
    }

    .shell {
        border-radius: 24px;
    }

    .inner {
        padding: 24px 16px 22px;
    }

    .headline h2 {
        font-size: 28px;
    }

    .main-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .glass-card,
    .mined-panel,
    .faq-card {
        border-radius: 20px;
    }

    .glass-card,
    .mined-panel {
        padding: 18px;
    }

    .join-headline {
        font-size: 24px;
    }

    .join-visual {
        height: 230px;
        border-radius: 16px;
    }

    .join-visual img.main-illus {
        width: 74%;
    }

    .join-visual-server {
        width: 32%;
    }

    .safe-points {
        grid-template-columns: 1fr 1fr;
    }

    .currency-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .currency-card {
        min-height: 98px;
        padding: 14px 13px;
    }

    .about-intro-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-visual {
        justify-content: center;
        min-height: 210px;
    }

    .about-main-visual {
        max-width: 220px;
    }

    .about-visual-ring {
        right: auto;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {

    .team-track,
    .team-grid-scroll {
        gap: 10px;
    }

    .team-grid-scroll .team-card {
        width: 260px;
        min-width: 260px;
        padding: 14px;
        border-radius: 18px;
    }

    .team-person-top {
        gap: 10px;
    }

    .team-avatar {
        width: 58px;
        height: 58px;
    }

    .team-grid-scroll .team-card h4 {
        font-size: 15px;
    }

    .team-grid-scroll .team-card p {
        font-size: 12px;
        line-height: 1.78;
    }

    .topbar {
        position: relative;
        top: 0;
        margin-top: 0;
        padding: 12px 14px 12px;
        border-radius: 0;
        border: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        max-width: none;
        gap: 10px;
        align-items: flex-start;
    }

    .brand {
        font-size: 14px;
        gap: 8px;
    }

    .brand-mark {
        width: 22px;
        height: 22px;
        border-radius: 7px;
    }

    .top-actions {
        gap: 8px;
    }

    .lang-switch {
        gap: 4px;
        padding: 3px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
    }

    .hero {
        min-height: auto;
        padding: 20px 14px 34px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-line {
        width: 78px;
        height: 4px;
        margin-bottom: 14px;
    }

    .hero-copy-card {
        padding: 14px;
        gap: 12px;
        border-radius: 18px;
    }

    .hero-copy-tag {
        font-size: 10px;
        padding: 5px 8px;
        margin-bottom: 10px;
    }

    .hero-title {
        width: 100%;
        max-width: none;
        font-size: 32px;
        line-height: 1.04;
        letter-spacing: 0;
    }

    .hero-title span {
        margin-bottom: 4px;
    }

    .hero-subtitle {
        width: 100%;
        max-width: none;
        margin-top: 10px;
        font-size: 12px;
        line-height: 1.72;
    }

    .hero-badges {
        margin-top: 12px;
        gap: 8px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 7px 10px;
    }

    .hero-fill-card {
        height: 180px;
        min-height: 0;
        margin-top: 2px;
        border-radius: 16px;
    }

    .hero-fill-main {
        left: 10px;
        width: 76%;
        height: calc(100% - 20px);
        bottom: 6px;
    }

    .hero-fill-side {
        right: -10px;
        bottom: -6px;
        height: 74%;
        max-width: 34%;
    }

    .hero-fill-badge {
        left: 10px;
        /* top: 10px; */
        font-size: 10px;
        padding: 5px 8px;
    }

    .hero-right {
        gap: 12px;
    }

    .hero-side-stack {
        gap: 10px;
    }

    .hero-download-card,
    .hero-panel {
        padding: 14px;
        border-radius: 16px;
    }

    .hero-download-card-top {
        gap: 8px;
        margin-bottom: 10px;
    }

    .hero-download-title {
        font-size: 13px;
        line-height: 1.4;
    }

    .hero-download-desc-small {
        font-size: 11px;
        line-height: 1.65;
    }

    .hero-access-chip {
        font-size: 10px;
        padding: 5px 8px;
    }

    .hero-platform-list {
        gap: 8px;
    }

    .hero-platform-btn {
        min-height: 40px;
        padding: 0 11px;
        font-size: 12px;
        border-radius: 12px;
    }

    .hero-platform-left {
        gap: 8px;
    }

    .hero-platform-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .hero-platform-arrow {
        font-size: 12px;
    }

    .mini-label {
        font-size: 10px;
        margin-bottom: 10px;
        letter-spacing: 1.2px;
    }

    .hero-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .metric {
        padding: 11px;
        border-radius: 12px;
    }

    .metric strong {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .metric span {
        font-size: 10px;
        line-height: 1.45;
    }

    .metric-usdt::after {
        font-size: 20px;
        right: 8px;
        top: 6px;
    }

    .content-wrap {
        margin-top: 0;
        padding: 0 14px 30px;
    }

    .shell {
        border-radius: 18px;
    }

    .inner {
        padding: 20px 12px 18px;
    }

    .headline {
        margin-bottom: 18px;
    }

    .eyebrow {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .eyebrow::after {
        width: 70px;
        margin-top: 8px;
    }

    .headline h2 {
        font-size: 22px;
        line-height: 1.24;
        margin-bottom: 8px;
    }

    .headline p {
        font-size: 12px;
        line-height: 1.72;
    }

    .main-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .glass-card,
    .mined-panel,
    .faq-card,
    .about-intro-card,
    .service-card,
    .stats-card,
    .team-card {
        border-radius: 18px;
    }

    .glass-card,
    .mined-panel {
        padding: 14px;
    }

    .join-eyebrow {
        font-size: 10px;
        padding: 5px 8px;
        margin-bottom: 8px;
    }

    .join-headline {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .glass-card h3,
    .mined-head h3,
    .about-intro-card h3,
    .faq-card h3,
    .service-card h4,
    .team-card h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .glass-card p,
    .mined-head p,
    .about-intro-card p,
    .service-card p,
    .team-card p {
        font-size: 12px;
        line-height: 1.78;
    }

    .join-highlight {
        margin-top: 12px;
        padding: 12px 13px;
        border-radius: 14px;
        font-size: 12px;
        line-height: 1.78;
    }

    .usdt-badge {
        margin-top: 12px;
        font-size: 11px;
        padding: 8px 10px;
        gap: 7px;
    }

    .usdt-icon {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

    .join-visual {
        margin-top: 14px;
        height: 190px;
        min-height: 0;
        border-radius: 14px;
    }

    .join-visual img.main-illus {
        width: 78%;
        height: 100%;
        padding: 8px;
        object-fit: contain;
    }

    .join-visual-server {
        width: 34%;
        right: -6px;
        bottom: -4px;
    }

    .join-visual img.float-coin {
        width: 74px;
        right: 6px;
        top: 8px;
    }

    .safe-points {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 14px;
    }

    .point {
        padding: 11px 11px 11px 13px;
        border-radius: 12px;
        font-size: 11px;
        line-height: 1.65;
    }

    .point::before {
        left: 11px;
        top: 11px;
    }

    .point span {
        padding-left: 13px;
    }

    .mined-panel {
        padding: 14px;
    }

    .mined-head {
        gap: 10px;
        margin-bottom: 12px;
    }

    .mined-icon {
        width: 68px;
    }

    .currency-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .currency-card {
        min-height: 84px;
        padding: 12px;
        border-radius: 14px;
        gap: 10px;
    }

    .currency-top {
        gap: 9px;
    }

    .currency-icon-img {
        width: 32px;
        height: 32px;
    }

    .currency-name {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .currency-note {
        font-size: 10px;
        line-height: 1.45;
    }

    .currency-value-block {
        min-width: 58px;
    }

    .currency-value {
        font-size: 18px;
        min-height: 20px;
    }

    .bottom-row {
        margin-top: 14px;
        gap: 14px;
    }

    .about-section {
        gap: 14px;
    }

    .about-intro-card {
        padding: 14px;
    }

    .about-intro-card h3 {
        font-size: 22px;
    }

    .about-visual {
        min-height: 180px;
    }

    .about-main-visual {
        max-width: 190px;
    }

    .about-visual-ring {
        width: 170px;
        height: 170px;
    }

    .service-grid,
    .stats-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-card,
    .stats-card,
    .team-card {
        padding: 14px;
    }

    .team-person-top {
        gap: 10px;
    }

    .team-avatar {
        width: 58px;
        height: 58px;
    }

    .stats-card strong {
        font-size: 28px;
    }

    .faq-card {
        margin-top: 14px;
        padding: 18px 12px 8px;
    }

    .faq-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .faq-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .faq-item {
        border-radius: 14px;
    }

    .faq-btn {
        padding: 13px;
    }

    .faq-q {
        font-size: 13px;
        line-height: 1.6;
    }

    .faq-arrow {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .faq-content-inner {
        padding: 0 13px 14px;
        font-size: 12px;
        line-height: 1.8;
    }

    .footer {
        margin-top: 18px;
        padding-top: 14px;
        font-size: 11px;
        line-height: 1.8;
    }
}