/* ============================================
   SoulWallet — Premium Solana Exchange Landing
   Transparent 3D image with interactive effects
   ============================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sol-purple: #9945FF;
    --sol-green: #14F195;
    --sol-cyan: #00D1FF;
    --sol-magenta: #DC1FFF;
    --sol-dark: #06060b;
    --sol-dark-2: #0c0c14;
    --sol-text: #e4e4f0;
    --sol-text-dim: #6e6e8a;
    --sol-gradient: linear-gradient(135deg, #9945FF 0%, #14F195 50%, #00D1FF 100%);
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--sol-dark);
    color: var(--sol-text);
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* === Background === */
.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(153, 69, 255, 0.5), transparent 70%);
    top: -15%;
    right: -5%;
    animation: blobFloat1 18s ease-in-out infinite;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(20, 241, 149, 0.3), transparent 70%);
    bottom: -10%;
    left: 20%;
    animation: blobFloat2 22s ease-in-out infinite;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 209, 255, 0.25), transparent 70%);
    top: 40%;
    left: -10%;
    animation: blobFloat1 20s ease-in-out infinite reverse;
}

.blob-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(220, 31, 255, 0.2), transparent 70%);
    top: 10%;
    left: 50%;
    animation: blobFloat2 25s ease-in-out infinite reverse;
}

@keyframes blobFloat1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

@keyframes blobFloat2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -40px) scale(1.1);
    }
}

.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
}

#particleCanvas {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(153, 69, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 3;
    transform: translate(-50%, -50%);
}

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 18px 0;
    transition: all 0.5s var(--ease);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(6, 6, 11, 0.8);
    backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid rgba(153, 69, 255, 0.08);
}

.nav-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 101;
}

.logo-icon {
    display: flex;
    align-items: center;
    transition: transform 0.5s var(--ease-bounce);
    filter: drop-shadow(0 0 8px rgba(20, 241, 149, 0.3));
}

.logo:hover .logo-icon {
    transform: rotate(8deg) scale(1.12);
    filter: drop-shadow(0 0 16px rgba(20, 241, 149, 0.5));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 23px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-link {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sol-text-dim);
    border-radius: 10px;
    transition: all 0.3s var(--ease);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(153, 69, 255, 0.06);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2px;
    background: var(--sol-gradient);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-signup {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border: 1.5px solid rgba(153, 69, 255, 0.35);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.12), rgba(20, 241, 149, 0.05));
    transition: all 0.4s var(--ease);
    overflow: hidden;
}

.btn-signup .btn-arrow {
    transition: all 0.3s var(--ease);
    opacity: 0;
    margin-left: -14px;
}

.btn-signup:hover .btn-arrow {
    opacity: 1;
    margin-left: 0;
}

.btn-signup:hover {
    border-color: rgba(153, 69, 255, 0.7);
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.2), rgba(20, 241, 149, 0.1));
    box-shadow: 0 0 30px rgba(153, 69, 255, 0.2);
    transform: translateY(-2px);
}

/* Hamburger — removed, not needed */
.hamburger {
    display: none !important;
}

/* === Hero === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

.hero-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 140px 48px 80px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 12px;
    border-radius: 100px;
    background: rgba(153, 69, 255, 0.08);
    border: 1px solid rgba(153, 69, 255, 0.15);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--sol-green);
    letter-spacing: 0.3px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeSlideIn 0.6s var(--ease) forwards 0.1s;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sol-green);
    box-shadow: 0 0 12px var(--sol-green);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        box-shadow: 0 0 6px var(--sol-green);
    }

    50% {
        box-shadow: 0 0 18px var(--sol-green), 0 0 30px rgba(20, 241, 149, 0.3);
    }
}

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

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 5.2vw, 78px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
    color: #fff;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px) rotateX(-8deg);
    animation: titleReveal 0.9s var(--ease) forwards;
    transform-origin: left center;
}

.title-line[data-delay="0"] {
    animation-delay: 0.2s;
}

.title-line[data-delay="1"] {
    animation-delay: 0.4s;
}

.title-line[data-delay="2"] {
    animation-delay: 0.6s;
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.gradient-text {
    background: var(--sol-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: titleReveal 0.9s var(--ease) forwards 0.6s, gradientShift 6s ease-in-out infinite 1.5s;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.75;
    color: var(--sol-text-dim);
    max-width: 440px;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeSlideIn 0.7s var(--ease) forwards 0.8s;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 32px;
    opacity: 0;
    animation: fadeSlideIn 0.7s var(--ease) forwards 1s;
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--sol-dark);
    background: var(--sol-gradient);
    background-size: 200% 200%;
    border: none;
    border-radius: 14px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-get-started::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-get-started:hover::before {
    opacity: 1;
}

.btn-get-started:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 32px rgba(153, 69, 255, 0.35), 0 4px 16px rgba(20, 241, 149, 0.25), 0 0 80px rgba(153, 69, 255, 0.15);
}

.btn-get-started:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-get-started svg {
    transition: transform 0.3s var(--ease);
}

.btn-get-started:hover svg {
    transform: translateX(4px);
}

.live-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(153, 69, 255, 0.15);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    transition: color 0.4s ease;
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--sol-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ============================================
   HERO 3D IMAGE — Transparent merge + tilt
   ============================================ */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hero-3d-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    opacity: 0;
    animation: imageIn 1.4s var(--ease) forwards 0.4s;
}

@keyframes imageIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(40px);
        filter: blur(10px);
    }

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

.hero-3d-tilt {
    position: relative;
    will-change: transform;
    transition: transform 0.06s linear;
    border-radius: 8px;
}

.hero-cube-img {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    filter: drop-shadow(0 0 40px rgba(153, 69, 255, 0.3)) drop-shadow(0 0 80px rgba(0, 209, 255, 0.15));
    position: relative;
    z-index: 2;
}

/* Cursor reflection on image */
.cursor-reflect {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(153, 69, 255, 0.15) 0%,
            rgba(20, 241, 149, 0.08) 40%,
            transparent 70%);
    pointer-events: none;
    z-index: 3;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

.hero-3d-tilt:hover .cursor-reflect {
    opacity: 1;
}

/* Ambient glows behind */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.ag-purple {
    width: 280px;
    height: 280px;
    background: rgba(153, 69, 255, 0.25);
    top: 5%;
    left: 0%;
    animation: agPulse 6s ease-in-out infinite;
}

.ag-green {
    width: 220px;
    height: 220px;
    background: rgba(20, 241, 149, 0.18);
    bottom: 10%;
    right: 0%;
    animation: agPulse 8s ease-in-out infinite 2s;
}

.ag-cyan {
    width: 180px;
    height: 180px;
    background: rgba(0, 209, 255, 0.12);
    top: 45%;
    left: 45%;
    animation: agPulse 10s ease-in-out infinite 4s;
}

@keyframes agPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.25);
        opacity: 0.9;
    }
}

/* Floating neon orbs */
.float-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 4;
}

.fo-1 {
    width: 10px;
    height: 10px;
    background: var(--sol-purple);
    box-shadow: 0 0 18px var(--sol-purple), 0 0 50px rgba(153, 69, 255, 0.3);
    top: 3%;
    left: 30%;
    animation: orbFloat 7s ease-in-out infinite;
}

.fo-2 {
    width: 7px;
    height: 7px;
    background: var(--sol-green);
    box-shadow: 0 0 14px var(--sol-green), 0 0 35px rgba(20, 241, 149, 0.25);
    top: 42%;
    right: 18%;
    animation: orbFloat 9s ease-in-out infinite reverse;
}

.fo-3 {
    width: 12px;
    height: 12px;
    background: var(--sol-cyan);
    box-shadow: 0 0 22px var(--sol-cyan), 0 0 55px rgba(0, 209, 255, 0.3);
    bottom: 4%;
    left: 20%;
    animation: orbFloat 8s ease-in-out infinite 1s;
}

.fo-4 {
    width: 5px;
    height: 5px;
    background: var(--sol-magenta);
    box-shadow: 0 0 10px var(--sol-magenta);
    bottom: 42%;
    right: 28%;
    animation: orbFloat 6s ease-in-out infinite 2s;
}

.fo-5 {
    width: 8px;
    height: 8px;
    background: var(--sol-green);
    box-shadow: 0 0 14px var(--sol-green);
    top: 72%;
    left: 42%;
    animation: orbFloat 11s ease-in-out infinite;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }

    25% {
        transform: translate(12px, -18px) scale(1.2);
        opacity: 1;
    }

    50% {
        transform: translate(-8px, 8px) scale(0.8);
        opacity: 0.5;
    }

    75% {
        transform: translate(14px, 10px) scale(1.1);
        opacity: 0.9;
    }
}

/* === Floating Token Logos — depth-based layout === */
.float-token {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 6;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 15, 25, 0.5);
    backdrop-filter: blur(6px);
    transition: filter 0.3s ease;
}

.float-token img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* ---- CLOSE / NEAR tokens ---- */

/* Solana — closest, biggest, left side, prominent frame */
.ft-solana {
    width: 56px;
    height: 56px;
    top: 12%;
    left: -6%;
    z-index: 8;
    border: 2px solid rgba(153, 69, 255, 0.35);
    box-shadow:
        0 0 28px rgba(153, 69, 255, 0.35),
        0 0 60px rgba(0, 209, 255, 0.12),
        0 6px 20px rgba(0, 0, 0, 0.5);
    animation: tokenNear 9s ease-in-out infinite;
}

/* Jupiter — close, bottom-right */
.ft-jupiter {
    width: 48px;
    height: 48px;
    bottom: 5%;
    right: 2%;
    z-index: 8;
    border: 2px solid rgba(0, 209, 255, 0.3);
    box-shadow:
        0 0 24px rgba(0, 209, 255, 0.3),
        0 0 50px rgba(153, 69, 255, 0.1),
        0 5px 18px rgba(0, 0, 0, 0.5);
    animation: tokenNear 10s ease-in-out infinite 1s;
}

/* ---- MID-CLOSE tokens ---- */

/* PumpFun — mid-close, right */
.ft-pumpfun {
    width: 38px;
    height: 38px;
    top: 5%;
    right: 10%;
    z-index: 7;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 0 18px rgba(153, 69, 255, 0.2),
        0 4px 14px rgba(0, 0, 0, 0.4);
    animation: tokenMid 11s ease-in-out infinite 1.5s;
}

/* WIF (dogwifhat) — mid-close, bottom-left */
.ft-wif {
    width: 34px;
    height: 34px;
    bottom: 18%;
    left: 4%;
    z-index: 7;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 0 16px rgba(220, 31, 255, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.35);
    animation: tokenMid 9s ease-in-out infinite 0.5s;
}

/* ---- MID-DISTANCE tokens ---- */

/* USDC — mid, top-left area */
.ft-usdc {
    width: 28px;
    height: 28px;
    top: 55%;
    left: -2%;
    z-index: 5;
    opacity: 0.75;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 12px rgba(0, 209, 255, 0.15),
        0 3px 10px rgba(0, 0, 0, 0.3);
    filter: blur(0.3px);
    animation: tokenFar 13s ease-in-out infinite 2s;
}

/* Raydium — mid-far, right edge */
.ft-raydium {
    width: 26px;
    height: 26px;
    top: 38%;
    right: -1%;
    z-index: 5;
    opacity: 0.65;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 10px rgba(153, 69, 255, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.3);
    filter: blur(0.4px);
    animation: tokenFar 12s ease-in-out infinite 3s;
}

/* ---- FAR / BACKGROUND tokens ---- */

/* Jito — far, top center-right */
.ft-jto {
    width: 22px;
    height: 22px;
    top: 2%;
    left: 40%;
    z-index: 4;
    opacity: 0.5;
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow:
        0 0 8px rgba(20, 241, 149, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.3);
    filter: blur(0.7px);
    animation: tokenFar 10s ease-in-out infinite 4s;
}

/* Orca — far, bottom-center */
.ft-orca {
    width: 22px;
    height: 22px;
    bottom: 35%;
    right: 22%;
    z-index: 4;
    opacity: 0.5;
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow:
        0 0 8px rgba(0, 209, 255, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.25);
    filter: blur(0.7px);
    animation: tokenFar 11s ease-in-out infinite 2.5s;
}

/* Bonk — farthest, smallest */
.ft-bonk {
    width: 18px;
    height: 18px;
    top: 68%;
    right: 8%;
    z-index: 3;
    opacity: 0.4;
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow:
        0 0 6px rgba(220, 31, 255, 0.08),
        0 1px 4px rgba(0, 0, 0, 0.2);
    filter: blur(1px);
    animation: tokenFar 8s ease-in-out infinite 0.5s;
}

/* Near tokens — larger, slower movement */
@keyframes tokenNear {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(6px, -10px) scale(1.04);
    }

    50% {
        transform: translate(-4px, 5px) scale(0.97);
    }

    75% {
        transform: translate(8px, 6px) scale(1.02);
    }
}

/* Mid-distance tokens */
@keyframes tokenMid {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }

    30% {
        transform: translate(-8px, -10px) scale(1.06);
        opacity: 0.95;
    }

    60% {
        transform: translate(10px, 4px) scale(0.92);
        opacity: 0.65;
    }
}

/* Far tokens — subtle, dreamy drift */
@keyframes tokenFar {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    40% {
        transform: translate(4px, -6px) scale(1.03);
    }

    70% {
        transform: translate(-3px, 4px) scale(0.97);
    }
}

/* === Hero Bottom === */
.hero-bottom {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    padding: 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1340px;
    margin: 0 auto;
    z-index: 10;
    opacity: 0;
    animation: fadeSlideIn 0.6s var(--ease) forwards 1.2s;
}

.how-it-works {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--sol-text-dim);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.how-it-works:hover {
    color: #fff;
}

.play-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(153, 69, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease);
    position: relative;
}

.play-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(153, 69, 255, 0.15);
    animation: playPulse 2.5s ease-in-out infinite;
}

@keyframes playPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.how-it-works:hover .play-icon {
    border-color: var(--sol-purple);
    background: rgba(153, 69, 255, 0.12);
    box-shadow: 0 0 24px rgba(153, 69, 255, 0.2);
}

.play-icon svg {
    margin-left: 2px;
}

.social-links {
    display: flex;
    gap: 28px;
}

.social-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--sol-text-dim);
    transition: all 0.3s ease;
    position: relative;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--sol-gradient);
    transition: width 0.3s var(--ease);
}

.social-link:hover {
    color: #fff;
}

.social-link:hover::after {
    width: 100%;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 110px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

    .hero-cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-3d-wrapper {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(6, 6, 11, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: none !important;
    }

    .nav-container {
        padding: 0 16px;
    }

    .logo-text {
        font-size: 18px;
    }

    .btn-signup {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 10px;
    }

    .btn-signup .btn-arrow {
        display: none;
    }

    .hero-container {
        padding: 100px 24px 80px;
    }

    .hero-title {
        font-size: clamp(36px, 8vw, 52px);
        letter-spacing: -1.5px;
    }

    .hero-bottom {
        padding: 0 24px;
        flex-direction: column;
        gap: 16px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 20px;
    }

    .hero-3d-wrapper {
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(30px, 9vw, 42px);
    }

    .btn-get-started {
        padding: 14px 28px;
        font-size: 14px;
    }

    .logo-text {
        font-size: 18px;
    }

    .hero-3d-wrapper {
        max-width: 280px;
    }
}

::selection {
    background: rgba(153, 69, 255, 0.3);
    color: #fff;
}

/* ============================================
   FEATURE SECTION — Social Network + iBuy
   ============================================ */
.feature-section {
    position: relative;
    z-index: 10;
    padding: 60px 0 70px;
    overflow: hidden;
}

.feature-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* Reversed layout — phone left, content right (natural HTML order) */

/* Mirror the phone tilt direction for reversed layout */
.feature-reversed .phone-3d {
    transform: perspective(1200px) rotateY(18deg) rotateX(6deg) rotateZ(3deg);
}

.feature-content {
    position: relative;
    z-index: 10;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 12px;
    border-radius: 100px;
    background: rgba(153, 69, 255, 0.08);
    border: 1px solid rgba(153, 69, 255, 0.15);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--sol-green);
    letter-spacing: 0.3px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--ease);
}

.feature-section.in-view .feature-badge {
    opacity: 1;
    transform: translateY(0);
}

.feature-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2.5px;
    margin-bottom: 28px;
    color: #fff;
}

.ft-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s var(--ease);
}

.feature-section.in-view .ft-line {
    opacity: 1;
    transform: translateY(0);
}

.feature-section.in-view .ft-line:nth-child(2) {
    transition-delay: 0.15s;
}

.ft-gradient {
    background: var(--sol-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 6s ease-in-out infinite;
}

.feature-description {
    font-size: 16px;
    line-height: 1.75;
    color: var(--sol-text-dim);
    max-width: 460px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s var(--ease) 0.3s;
}

.feature-section.in-view .feature-description {
    opacity: 1;
    transform: translateY(0);
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s var(--ease) 0.45s;
}

.feature-section.in-view .feature-highlights {
    opacity: 1;
    transform: translateY(0);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(153, 69, 255, 0.04);
    border: 1px solid rgba(153, 69, 255, 0.08);
    transition: all 0.3s var(--ease);
}

.highlight-item:hover {
    background: rgba(153, 69, 255, 0.08);
    border-color: rgba(153, 69, 255, 0.2);
    transform: translateX(6px);
}

.highlight-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.15), rgba(20, 241, 149, 0.08));
    border: 1px solid rgba(153, 69, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sol-green);
}

.highlight-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.highlight-desc {
    display: block;
    font-size: 12.5px;
    color: var(--sol-text-dim);
}

/* ============================================
   3D PHONE MOCKUP — Premium Metallic
   ============================================ */
.phone-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

.phone-glow {
    position: absolute;
    width: 340px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(153, 69, 255, 0.15) 0%,
            rgba(0, 209, 255, 0.06) 40%,
            transparent 70%);
    filter: blur(70px);
    z-index: 0;
    animation: agPulse 8s ease-in-out infinite;
}

.phone-3d {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: perspective(1200px) rotateY(-18deg) rotateX(6deg) rotateZ(-3deg);
    transition: opacity 1s var(--ease) 0.3s;
    transform-style: preserve-3d;
}

.feature-section.in-view .phone-3d {
    opacity: 1;
}

/* ---- Realistic phone body ---- */
.phone-frame {
    width: 290px;
    border-radius: 48px;
    position: relative;
    overflow: visible;
    transform-style: preserve-3d;
    background: #111118;
    padding: 12px;
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.75),
        0 12px 35px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(60, 60, 80, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}

/* Subtle inner bezel ring */
.phone-frame::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
    z-index: 3;
}

/* --- Physical side buttons --- */
.phone-btn {
    position: absolute;
    z-index: 12;
}

/* Power button — right side */
.phone-btn-power {
    width: 3px;
    height: 48px;
    right: -3px;
    top: 28%;
    border-radius: 0 3px 3px 0;
    background: linear-gradient(180deg, #2a2a38, #18181f, #2a2a38);
    box-shadow: 1px 0 2px rgba(0, 0, 0, 0.5);
}

/* Volume up — left side */
.phone-btn-volup {
    width: 3px;
    height: 32px;
    left: -3px;
    top: 22%;
    border-radius: 3px 0 0 3px;
    background: linear-gradient(180deg, #2a2a38, #18181f, #2a2a38);
    box-shadow: -1px 0 2px rgba(0, 0, 0, 0.5);
}

/* Volume down — left side */
.phone-btn-voldn {
    width: 3px;
    height: 32px;
    left: -3px;
    top: 33%;
    border-radius: 3px 0 0 3px;
    background: linear-gradient(180deg, #2a2a38, #18181f, #2a2a38);
    box-shadow: -1px 0 2px rgba(0, 0, 0, 0.5);
}

/* Mute switch — left side */
.phone-btn-mute {
    width: 3px;
    height: 18px;
    left: -3px;
    top: 16%;
    border-radius: 3px 0 0 3px;
    background: linear-gradient(180deg, #2a2a38, #18181f);
    box-shadow: -1px 0 2px rgba(0, 0, 0, 0.5);
}

/* Dynamic island */
.phone-notch {
    width: 100px;
    height: 30px;
    background: #000;
    border-radius: 20px;
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 8;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* Camera lens inside dynamic island */
.phone-notch::after {
    content: '';
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #1e1e30 0%, #060608 100%);
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    box-shadow:
        inset 0 0 3px rgba(0, 160, 255, 0.12),
        0 0 1px rgba(255, 255, 255, 0.06);
}

.phone-screen {
    border-radius: 38px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.phone-screenshot {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* Screen glare */
.phone-glare {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 48px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.045) 0%,
            rgba(255, 255, 255, 0.015) 30%,
            transparent 50%);
    pointer-events: none;
    z-index: 10;
}

/* Hidden — not used */
.phone-edge {
    display: none;
}

/* Floating reflection below phone */
.phone-reflection {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(ellipse,
            rgba(153, 69, 255, 0.1) 0%,
            rgba(0, 209, 255, 0.04) 40%,
            transparent 70%);
    filter: blur(18px);
    z-index: 0;
}

/* ============================================
   All Markets Section
   ============================================ */

.markets-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s var(--ease) 0.5s;
}

.feature-section.in-view .markets-grid {
    opacity: 1;
    transform: translateY(0);
}

.market-tag {
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-primary);
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    cursor: default;
}

.market-tag:hover {
    background: rgba(153, 69, 255, 0.12);
    border-color: rgba(153, 69, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(153, 69, 255, 0.15);
}

.tag-more {
    background: var(--sol-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-color: rgba(153, 69, 255, 0.25);
    font-style: italic;
}

/* ============================================
   Coming Soon / Roadmap Section
   ============================================ */
.coming-soon-section {
    padding: 80px 0 100px;
}

.coming-soon-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.coming-soon-title {
    text-align: center;
}

.coming-soon-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    margin: 0 auto 44px;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cs-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
    background: rgba(15, 12, 30, 0.85);
    border: 1px solid rgba(153, 69, 255, 0.12);
    text-align: left;
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease);
}

.feature-section.in-view .cs-card {
    opacity: 1;
    transform: translateY(0);
}

.feature-section.in-view .cs-card:nth-child(1) {
    transition-delay: 0.05s;
}

.feature-section.in-view .cs-card:nth-child(2) {
    transition-delay: 0.1s;
}

.feature-section.in-view .cs-card:nth-child(3) {
    transition-delay: 0.15s;
}

.feature-section.in-view .cs-card:nth-child(4) {
    transition-delay: 0.2s;
}

.feature-section.in-view .cs-card:nth-child(5) {
    transition-delay: 0.25s;
}

.cs-card:hover {
    border-color: rgba(153, 69, 255, 0.25);
    background: rgba(25, 20, 50, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(153, 69, 255, 0.1);
}

/* Last card spans full width, centered */
.cs-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
}

.cs-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(153, 69, 255, 0.08);
}

.cs-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cs-text strong {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.2px;
}

.cs-text span {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.4);
}

.cs-card-glow {
    border-color: rgba(20, 241, 149, 0.2);
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.08), rgba(20, 241, 149, 0.04));
}

.cs-card-glow .cs-text strong {
    background: var(--sol-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   RESPONSIVE — Feature Section
   ============================================ */
@media (max-width: 1200px) {
    .feature-container {
        gap: 32px;
        padding: 0 32px;
    }

    .phone-frame {
        width: 240px;
        border-radius: 38px;
    }

    .feature-title {
        font-size: clamp(30px, 3.5vw, 50px);
    }
}

@media (max-width: 900px) {
    .feature-section {
        padding: 48px 0 56px;
    }

    .feature-container {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 0 20px;
    }

    .feature-title {
        font-size: clamp(22px, 3.5vw, 32px);
        letter-spacing: -1px;
        margin-bottom: 12px;
    }

    .feature-description {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .feature-badge {
        font-size: 11px;
        padding: 4px 10px;
        margin-bottom: 10px;
    }

    .phone-frame {
        width: 200px;
        border-radius: 32px;
        padding: 8px;
    }

    .phone-screen {
        border-radius: 26px;
    }

    .phone-notch {
        width: 68px;
        height: 20px;
        top: 12px;
    }

    .phone-showcase {
        min-height: auto;
    }

    .highlight-item {
        padding: 10px 12px;
    }

    .highlight-icon {
        width: 34px;
        height: 34px;
        border-radius: 9px;
    }

    .highlight-title {
        font-size: 12.5px;
    }

    .highlight-desc {
        font-size: 11px;
    }

    .markets-container {
        padding: 0 20px;
    }

    .markets-description {
        font-size: 14px;
    }

    .market-tag {
        padding: 8px 16px;
        font-size: 12px;
    }

    .coming-soon-wrap {
        padding: 0 20px;
    }

    .cs-card {
        padding: 20px;
    }

    .cs-text strong {
        font-size: 14px;
    }

    .cs-text span {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .feature-section {
        padding: 36px 0 44px;
    }

    .feature-container {
        grid-template-columns: 45% 1fr;
        gap: 16px;
        padding: 0 14px;
    }

    /* Push phone up on mobile */
    .phone-showcase {
        margin-top: -20px;
    }

    /* Last highlight breaks out full-width below the grid */
    .feature-content {
        overflow: visible;
    }

    .feature-highlights {
        overflow: visible;
    }

    .feature-highlights .highlight-item:last-child {
        width: calc(100vw - 28px);
        margin-top: 8px;
        position: relative;
        z-index: 10;
    }

    /* Markets tags break out full-width */
    .markets-grid {
        width: calc(100vw - 28px);
        margin-top: 12px;
        position: relative;
        z-index: 10;
    }

    .feature-title {
        font-size: 20px;
        letter-spacing: -0.5px;
        margin-bottom: 8px;
    }

    .feature-description {
        font-size: 12px;
        line-height: 1.55;
    }

    .phone-frame {
        width: 170px;
        border-radius: 28px;
        padding: 6px;
    }

    .phone-screen {
        border-radius: 22px;
    }

    .phone-notch {
        width: 56px;
        height: 16px;
        top: 10px;
    }

    .phone-notch::after {
        width: 6px;
        height: 6px;
        right: 14px;
    }

    .highlight-item {
        padding: 8px 10px;
        gap: 8px;
    }

    .highlight-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }

    .highlight-title {
        font-size: 11.5px;
    }

    .highlight-desc {
        font-size: 10px;
    }

    .feature-highlights {
        gap: 8px;
    }

    .markets-description {
        font-size: 13px;
    }

    .market-tag {
        padding: 7px 14px;
        font-size: 11px;
    }

    .coming-soon-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cs-card:last-child {
        max-width: 100%;
    }

    .cs-card {
        padding: 18px;
    }

    .cs-text strong {
        font-size: 13.5px;
    }

    .cs-text span {
        font-size: 11.5px;
    }

    .coming-soon-desc {
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .feature-container {
        grid-template-columns: 40% 1fr;
        gap: 12px;
        padding: 0 10px;
    }

    .feature-title {
        font-size: 17px;
    }

    .feature-description {
        font-size: 11px;
    }

    .phone-frame {
        width: 145px;
        border-radius: 24px;
        padding: 5px;
    }

    .phone-screen {
        border-radius: 20px;
    }

    .phone-notch {
        width: 48px;
        height: 14px;
        top: 8px;
        border-radius: 12px;
    }

    .phone-notch::after {
        width: 5px;
        height: 5px;
        right: 11px;
    }

    .highlight-item {
        padding: 6px 8px;
        gap: 6px;
    }

    .highlight-icon {
        width: 26px;
        height: 26px;
        border-radius: 7px;
    }

    .highlight-title {
        font-size: 10.5px;
    }

    .highlight-desc {
        font-size: 9.5px;
    }

    .markets-description {
        font-size: 12px;
    }

    .market-tag {
        padding: 6px 12px;
        font-size: 10px;
    }

    .cs-card {
        padding: 14px;
        border-radius: 12px;
    }

    .cs-icon {
        width: 36px;
        height: 36px;
        font-size: 22px;
        border-radius: 8px;
    }

    .cs-text strong {
        font-size: 12.5px;
    }

    .cs-text span {
        font-size: 10.5px;
    }
}

/* ============================================
   Mobile Performance — disable heavy effects
   ============================================ */
@media (max-width: 768px) {
    .mesh-blob {
        animation: none !important;
        opacity: 0.15;
    }

    .cursor-glow {
        display: none;
    }

    .float-token,
    .float-orb {
        transform: scale(0.7);
        opacity: 0.7;
    }

    .phone-3d {
        transform: perspective(1400px) rotateY(-16deg) rotateX(4deg) !important;
        will-change: auto;
    }

    .feature-reversed .phone-3d {
        transform: perspective(1400px) rotateY(16deg) rotateX(4deg) !important;
    }

    .phone-glow,
    .phone-reflection {
        display: none;
    }

    .navbar {
        padding: 12px 0;
    }

    .navbar.scrolled {
        padding: 8px 0;
    }
}

/* === Scrollbar === */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--sol-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(153, 69, 255, 0.25);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(153, 69, 255, 0.45);
}