:root {
    --accent: #7c3aed;
    --accent-soft: rgba(124, 58, 237, 0.22);
    --hero-bg: #050214;
    --hero-bg-2: #0d0626;
    --hero-border: rgba(255, 255, 255, 0.12);
}

.hero-bg {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.28), transparent 34%),
        radial-gradient(circle at 80% 30%, rgba(168, 85, 247, 0.22), transparent 30%),
        linear-gradient(135deg, var(--hero-bg), var(--hero-bg-2) 55%, #02010a);
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
    pointer-events: none;
}

.hero-glow,
.hero-glow-2 {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 999px;
    filter: blur(30px);
    opacity: 0.55;
    pointer-events: none;
}

.hero-glow {
    left: -140px;
    top: 120px;
    background: rgba(124, 58, 237, 0.35);
}

.hero-glow-2 {
    right: -180px;
    bottom: -120px;
    background: rgba(192, 132, 252, 0.28);
}

.geo-shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.22);
    animation: floatShape 9s ease-in-out infinite;
    pointer-events: none;
}

.geo-1 {
    width: 84px;
    height: 84px;
    left: 10%;
    top: 24%;
    border-radius: 24px;
    transform: rotate(18deg);
}

.geo-2 {
    width: 120px;
    height: 120px;
    right: 12%;
    top: 20%;
    border-radius: 999px;
    animation-delay: -2s;
}

.geo-3 {
    width: 68px;
    height: 68px;
    left: 18%;
    bottom: 20%;
    border-radius: 18px;
    animation-delay: -4s;
}

.geo-4 {
    width: 92px;
    height: 92px;
    right: 20%;
    bottom: 18%;
    border-radius: 26px;
    transform: rotate(45deg);
    animation-delay: -1s;
}

.geo-5 {
    width: 44px;
    height: 44px;
    right: 44%;
    top: 17%;
    border-radius: 14px;
    animation-delay: -5s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(7deg);
    }
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    box-shadow: 0 18px 50px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6d28d9, #9333ea);
    transform: translateY(-1px);
}

.hero-stat-card {
    padding: 18px 16px;
    border: 1px solid var(--hero-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 80px rgba(0, 0, 0, 0.18);
}

.hero-stat-card strong {
    display: block;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-stat-card span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.hero-risk-note {
    color: rgba(255, 255, 255, 0.46);
}

.bg-accent {
    background-color: var(--accent);
}

@media (max-width: 768px) {
    .hero-bg {
        min-height: auto;
    }

    .geo-shape {
        opacity: 0.45;
    }

    .geo-1,
    .geo-3,
    .geo-5 {
        display: none;
    }

    .hero-glow,
    .hero-glow-2 {
        width: 320px;
        height: 320px;
    }

    .hero-stat-card {
        padding: 15px 14px;
    }

    .hero-stat-card strong {
        font-size: 20px;
    }
}
.investment-feature-card {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.investment-feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.investment-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.28);
    box-shadow: 0 24px 70px rgba(17, 24, 39, 0.10);
}

.investment-feature-card:hover::before {
    opacity: 1;
}

.investment-feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    transition:
        transform 0.28s ease,
        background-color 0.28s ease,
        box-shadow 0.28s ease;
}

.investment-feature-card:hover .feature-icon {
    transform: scale(1.05);
    background-color: rgba(124, 58, 237, 0.10);
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.16);
}

.investment-disclaimer {
    padding: 18px 22px;
    border: 1px solid rgba(124, 58, 237, 0.16);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(245, 158, 11, 0.05));
}

.investment-disclaimer p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .investment-feature-card {
        padding: 24px;
    }

    .investment-disclaimer {
        text-align: left;
        padding: 16px;
    }

    .investment-disclaimer p {
        font-size: 13px;
    }
}
/*  */
.platform-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #070816;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.18);
}

.platform-image-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.32), transparent 34%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.14), transparent 30%);
    pointer-events: none;
    z-index: 1;
}

.platform-image-topbar {
    position: relative;
    z-index: 3;
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    background: rgba(2, 6, 23, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-right: 7px;
}

.platform-image-wrap {
    position: relative;
    overflow: hidden;
    min-height: 430px;
}

.platform-main-image {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.platform-image-card:hover .platform-main-image {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.03);
}

.platform-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.05), rgba(2, 6, 23, 0.72)),
        linear-gradient(90deg, rgba(2, 6, 23, 0.58), transparent 56%);
    z-index: 2;
    pointer-events: none;
}

.platform-floating-card {
    position: absolute;
    z-index: 4;
    padding: 14px 16px;
    min-width: 150px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.platform-floating-card span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.platform-floating-card strong {
    display: block;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.platform-floating-card--top {
    top: 26px;
    right: 26px;
}

.platform-floating-card--bottom {
    left: 26px;
    bottom: 26px;
}

.platform-image-badge {
    position: absolute;
    z-index: 4;
    left: 26px;
    top: 26px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.88);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 16px 45px rgba(124, 58, 237, 0.35);
}

.platform-image-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.16);
}

@media (max-width: 1024px) {
    .platform-image-wrap {
        min-height: 380px;
    }

    .platform-main-image {
        height: 380px;
    }
}

@media (max-width: 640px) {
    .platform-image-card {
        border-radius: 22px;
    }

    .platform-image-topbar {
        height: 44px;
        padding: 0 14px;
    }

    .platform-image-wrap {
        min-height: 330px;
    }

    .platform-main-image {
        height: 330px;
    }

    .platform-floating-card {
        min-width: 128px;
        padding: 12px 13px;
        border-radius: 15px;
    }

    .platform-floating-card strong {
        font-size: 20px;
    }

    .platform-floating-card--top {
        top: 18px;
        right: 16px;
    }

    .platform-floating-card--bottom {
        left: 16px;
        bottom: 18px;
    }

    .platform-image-badge {
        left: 16px;
        top: auto;
        bottom: 96px;
        font-size: 12px;
        padding: 8px 11px;
    }
}
/*  */
.stats-card {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        background-color 0.28s ease,
        box-shadow 0.28s ease;
}

.stats-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.16), transparent 38%),
        radial-gradient(circle at bottom left, rgba(124, 58, 237, 0.16), transparent 42%);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.stats-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.22);
    background-color: rgba(255, 255, 255, 0.055);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.stats-card:hover::before {
    opacity: 1;
}

.stats-card > * {
    position: relative;
    z-index: 1;
}

.stat-number {
    color: #ffffff;
    background: linear-gradient(135deg, #fbbf24, #fef3c7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 640px) {
    .stats-card {
        padding: 22px 14px;
    }

    .stat-number {
        font-size: 32px;
    }
}
/*  */
.platform-area-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.platform-area-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.11), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(124, 58, 237, 0.035));
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.platform-area-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.26);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

.platform-area-card:hover::before {
    opacity: 1;
}

.platform-area-card > * {
    position: relative;
    z-index: 1;
}

.platform-area-card svg {
    transition: transform 0.28s ease;
}

.platform-area-card:hover svg {
    transform: scale(1.08);
}

@media (max-width: 640px) {
    .platform-area-card {
        padding: 24px;
    }
}
/*  */
.cta-gradient {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16), transparent 28%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.18), transparent 30%),
        linear-gradient(135deg, #4c1d95 0%, #6d28d9 45%, #0b0f1a 100%);
}

.cta-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.28;
    pointer-events: none;
}

.cta-gradient::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -160px;
    top: -160px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.22);
    filter: blur(40px);
    pointer-events: none;
}
/*  */
#footer {
    position: relative;
}

#footer a {
    text-decoration: none;
}

#footer a:hover {
    color: #7c3aed;
}

#footer .bg-gradient-to-br {
    box-shadow: 0 14px 34px rgba(124, 58, 237, 0.18);
}

@media (max-width: 640px) {
    #footer .grid {
        gap: 32px;
    }

    #footer .col-span-2 {
        grid-column: span 2 / span 2;
    }

    #footer .flex.items-center.gap-6 {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 22px;
    }
}