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

:root {
    --primary: #FFEA00;
    --primary-dark: #E6D300;
    --bg-dark: #000000;
    --bg-surface: #050505;
    --bg-card: #0A0A0A;
    --border: rgba(255, 255, 255, 0.08);
    --text-primary: #FFFFFF;
    --text-secondary: #999999;
    --text-muted: #666666;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #000000;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    cursor: none;
    min-height: 100vh;
}

/* Custom cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.2s ease, transform 0.1s ease;
    mix-blend-mode: difference;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    left: 0;
    top: 0;
}

.custom-cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    left: 0;
    top: 0;
}

/* Animated background effects with iridescent gradients (optimized) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 234, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 200, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 234, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    will-change: opacity, transform;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 234, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 234, 0, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
    will-change: transform, opacity;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
    50% {
        opacity: 0.8;
        transform: scale3d(1.05, 1.05, 1);
    }
}

@keyframes gridMove {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(100px, 100px, 0);
    }
}

@keyframes iridescentShift {
    0%, 100% {
        opacity: 1;
    }
    25% {
        opacity: 0.95;
    }
    50% {
        opacity: 0.9;
    }
    75% {
        opacity: 0.95;
    }
}

@keyframes gridIridescent {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.4;
    }
}

/* Floating particles effect (optimized) */
.particle {
    position: fixed;
    width: 2px;
    height: 2px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    will-change: transform, opacity;
    display: none;
}

@keyframes floatParticle {
    0% {
        transform: translate3d(0, 100vh, 0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translate3d(100px, -100vh, 0);
        opacity: 0;
    }
}

/* Background orbs with iridescent effect (optimized) */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    opacity: 0.5;
    will-change: transform, opacity;
    transform: translateZ(0); /* Force GPU acceleration */
}

.bg-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(255, 234, 0, 0.2) 0%, 
        rgba(255, 200, 0, 0.15) 30%,
        rgba(255, 234, 0, 0.1) 60%,
        transparent 100%);
    top: -200px;
    right: -200px;
    transform: translateZ(0);
}

.bg-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, 
        rgba(255, 200, 0, 0.15) 0%, 
        rgba(255, 234, 0, 0.1) 40%,
        rgba(255, 180, 0, 0.08) 70%,
        transparent 100%);
    bottom: -150px;
    left: -150px;
    transform: translateZ(0);
}

.bg-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, 
        rgba(255, 234, 0, 0.12) 0%, 
        rgba(255, 220, 0, 0.08) 50%,
        transparent 100%);
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

@keyframes orbFloat1 {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    33% {
        transform: translate3d(-100px, 100px, 0) scale(1.2);
    }
    66% {
        transform: translate3d(100px, -100px, 0) scale(0.9);
    }
}

@keyframes orbFloat2 {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(150px, -150px, 0) scale(1.3);
    }
}

@keyframes orbFloat3 {
    0%, 100% {
        transform: translate3d(-50%, -50%, 0) scale(1);
    }
    50% {
        transform: translate3d(-40%, -60%, 0) scale(1.1);
    }
}

@keyframes orbIridescent1 {
    0%, 100% {
        opacity: 0.5;
    }
    33% {
        opacity: 0.6;
    }
    66% {
        opacity: 0.55;
    }
}

@keyframes orbIridescent2 {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes orbIridescent3 {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

/* Animated lines background with iridescent effect (optimized) */
.bg-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    background-image: 
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 234, 0, 0.15) 25%,
            rgba(255, 200, 0, 0.2) 50%,
            rgba(255, 234, 0, 0.15) 75%,
            transparent 100%),
        linear-gradient(0deg, 
            transparent 0%, 
            rgba(255, 234, 0, 0.15) 25%,
            rgba(255, 220, 0, 0.2) 50%,
            rgba(255, 234, 0, 0.15) 75%,
            transparent 100%);
    background-size: 200% 200%;
    background-position: 0% 0%;
    will-change: background-position, opacity;
}

@keyframes linesMove {
    0% {
        background-position: 0% 0%, 0% 0%;
    }
    100% {
        background-position: 100% 100%, 100% 100%;
    }
}

@keyframes linesIridescent {
    0%, 100% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.25;
    }
}

/* Iridescent shimmer effect */
.iridescent-shimmer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 234, 0, 0.03) 50%,
        transparent 70%
    );
    background-size: 200% 200%;
    opacity: 0.6;
}

@keyframes shimmerMove {
    0% {
        background-position: -200% -200%;
        filter: hue-rotate(0deg);
    }
    50% {
        background-position: 200% 200%;
        filter: hue-rotate(30deg);
    }
    100% {
        background-position: -200% -200%;
        filter: hue-rotate(0deg);
    }
}

/* Additional iridescent particles */
.iridescent-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle, 
        rgba(255, 234, 0, 0.8) 0%,
        rgba(255, 200, 0, 0.6) 50%,
        transparent 100%);
    box-shadow: 0 0 10px rgba(255, 234, 0, 0.5);
    display: none;
}

@keyframes particleIridescent {
    0%, 100% {
        filter: hue-rotate(0deg) brightness(1) scale(1);
        opacity: 0.6;
    }
    50% {
        filter: hue-rotate(25deg) brightness(1.5) scale(1.2);
        opacity: 1;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10000;
    padding: 12px 0;
    overflow: hidden;
}

.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 234, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 200, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 234, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.nav::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 234, 0, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 234, 0, 0.015) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.2;
}

.nav-content {
    position: relative;
    z-index: 10001;
}

.nav-content {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    width: 80px;
    height: 80px;
    display: block;
    transition: transform 0.3s;
    background: transparent;
}

.logo-text {
    display: none;
}

.logo:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex-shrink: 0;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    margin-right: -80px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .nav-buttons {
        margin-right: 0;
    }
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

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

.btn-whitelist {
    background: transparent;
    color: var(--primary);
    padding: 12px 24px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
}

.btn-whitelist:hover {
    background: rgba(255, 234, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 234, 0, 0.2);
}

.btn-whitelist.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 234, 0, 0.3);
}

.btn-primary.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 16px 32px;
    border: 2px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 140px 0 140px;
    background: transparent;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    z-index: 1;
}


@keyframes heroGradient {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes heroIridescent {
    0%, 100% {
        filter: hue-rotate(0deg) brightness(1);
    }
    33% {
        filter: hue-rotate(15deg) brightness(1.2);
    }
    66% {
        filter: hue-rotate(-10deg) brightness(1.1);
    }
}



.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    padding-right: 60px;
    overflow: visible;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-right: 40px;
    overflow: visible;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 234, 0, 0.05);
    border: 1px solid rgba(255, 234, 0, 0.15);
    border-radius: 50px;
    width: fit-content;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.06em;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    padding-right: 40px;
    overflow: visible;
    word-spacing: 0.05em;
}

.nowrap-text {
    white-space: nowrap;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-right: 0.2em;
    display: inline-block;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 640px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 32px;
}

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

.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Hero Visual - Swap Card */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.swap-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 234, 0, 0.1);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 234, 0, 0.05);
    animation: float 8s ease-in-out infinite;
    backdrop-filter: blur(20px);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-24px) rotate(1deg); }
}

.swap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.swap-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.privacy-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 234, 0, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 12px;
    color: var(--primary);
}

.privacy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
}

.privacy-icon svg {
    width: 100%;
    height: 100%;
}

.swap-input {
    margin-bottom: 16px;
}

.input-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.input-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(5, 5, 5, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.token-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.token-icon-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: block;
    object-fit: cover;
    background: transparent;
}

.token-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.amount-input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    text-align: right;
    width: 120px;
    outline: none;
}

.swap-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px 0;
    padding: 12px;
    cursor: pointer;
    transition: transform 0.3s;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
}

.swap-arrow:hover {
    transform: rotate(180deg);
    background: rgba(255, 234, 0, 0.05);
}

.swap-arrow svg {
    width: 24px;
    height: 24px;
}

.swap-button {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.swap-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 234, 0, 0.3);
}

/* Features Section */
.features {
    padding: 140px 0;
    background: transparent;
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding-top: 0;
}

@media (max-width: 768px) {
    .features {
        padding-top: 80px;
        margin-top: 40px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.05em;
    line-height: 1.05;
    text-transform: uppercase;
}

.section-description {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-card:hover {
    border-color: rgba(255, 234, 0, 0.3);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 234, 0, 0.1);
    background: rgba(10, 10, 10, 0.9);
}

.feature-card.animate-in {
    animation: cardPop 0.6s ease-out;
}

@keyframes cardPop {
    0% {
        transform: translateY(40px) scale(0.95);
        opacity: 0;
    }
    50% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(255, 234, 0, 0.3));
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    filter: drop-shadow(0 0 16px rgba(255, 234, 0, 0.6));
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 140px 0;
    background: transparent;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    min-width: 80px;
    opacity: 0.3;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Security Section */
.security {
    padding: 140px 0;
    background: transparent;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.security-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.security-check {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.security-feature h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.security-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.security-visual {
    display: flex;
    justify-content: center;
}

.security-card {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.security-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 12px rgba(255, 234, 0, 0.4));
    animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% {
        filter: drop-shadow(0 0 12px rgba(255, 234, 0, 0.4));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 234, 0, 0.6));
        transform: scale(1.05);
    }
}

.security-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.security-stat {
    padding: 24px;
    background: rgba(5, 5, 5, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-text {
    color: var(--text-secondary);
    font-size: 14px;
}

/* CTA Section */
.cta {
    padding: 140px 0;
    background: transparent;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.05em;
    line-height: 1.05;
    text-transform: uppercase;
}

.cta-description {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 300px;
}

.footer-description {
    color: var(--text-secondary);
    margin-top: 12px;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* About Section */
.about {
    padding: 140px 0;
    background: transparent;
    position: relative;
    z-index: 10;
    margin-top: 0;
}

.about .container {
    position: relative;
    z-index: 10;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 64px;
    position: relative;
    z-index: 10;
}

.team-member {
    text-align: center;
    padding: 32px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    visibility: visible;
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 234, 0, 0.3);
    box-shadow: 0 8px 32px rgba(255, 234, 0, 0.1);
    background: rgba(255, 255, 255, 0.03);
    z-index: 10;
}

.team-member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 234, 0, 0.2), rgba(255, 200, 0, 0.1));
    border: 2px solid rgba(255, 234, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    visibility: visible;
    opacity: 1;
}

.team-member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 1;
}

.team-member-avatar img + .team-initials {
    display: none;
}

.team-member:hover .team-member-avatar {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 234, 0, 0.3);
    transform: scale(1.05);
}

.team-initials {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    display: block;
    visibility: visible;
    opacity: 1;
}

.team-member-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.team-member-role {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.team-member-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 234, 0, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 234, 0, 0.2);
}

.social-link svg {
    width: 18px;
    height: 18px;
}


/* Responsive */
/* Disable custom cursor on mobile */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }
}

@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 64px);
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .security-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nav-links {
        gap: 12px;
        position: static;
        transform: none;
        margin-left: 0;
    }

    .nav-link {
        display: none;
    }

    .btn-whitelist {
        padding: 10px 20px;
        font-size: 13px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .nav-content {
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav-buttons {
        margin-right: 0 !important;
        flex-wrap: wrap;
    }

    .features {
        padding-top: 80px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 36px;
    }

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

    .step-item {
        flex-direction: column;
        gap: 16px;
    }

    .step-number {
        font-size: 48px;
        min-width: auto;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-member {
        padding: 24px;
    }

    .team-member-avatar {
        width: 100px;
        height: 100px;
    }

    .team-initials {
        font-size: 32px;
    }

    .nav-links {
        position: static;
        transform: none;
        margin-left: 0;
        gap: 16px;
    }

    .nav-content {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 8px;
    }

    .nav-buttons {
        gap: 8px;
        margin-right: 0 !important;
        margin-left: auto;
        flex-shrink: 0;
    }

    .btn-whitelist,
    .btn-primary {
        padding: 8px 12px;
        font-size: 11px;
        white-space: nowrap;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo-img {
        width: 56px;
        height: 56px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .container {
        padding: 0 16px;
    }

    .features {
        padding-top: 100px;
        margin-top: 40px;
    }

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

    .swap-card {
        position: relative;
        z-index: 10;
    }
}

