/* ============================================
   $CLAWA - AI COMPANION TOKEN WEBSITE
   Cyberpunk/Futuristic Theme
   ============================================ */

/* CSS Variables */
:root {
    --primary: #a855f7;
    --primary-light: #c084fc;
    --primary-dark: #7c3aed;
    --secondary: #06b6d4;
    --secondary-light: #22d3ee;
    --accent: #f472b6;
    --accent-light: #f9a8d4;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(15, 15, 25, 0.8);
    --text: #ffffff;
    --text-muted: #a1a1aa;
    --text-dim: #71717a;
    --border: rgba(168, 85, 247, 0.2);
    --glow: 0 0 20px rgba(168, 85, 247, 0.5);
    --glow-strong: 0 0 40px rgba(168, 85, 247, 0.8);
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --font-accent: 'Rajdhani', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

/* Custom Cursor */
.custom-cursor {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.5;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.stars, .stars2, .stars3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
}

.stars {
    background: radial-gradient(2px 2px at 20px 30px, var(--primary-light), transparent),
                radial-gradient(2px 2px at 40px 70px, var(--secondary), transparent),
                radial-gradient(1px 1px at 90px 40px, white, transparent),
                radial-gradient(2px 2px at 160px 120px, var(--accent), transparent);
    background-size: 200px 200px;
    animation: starsMove 100s linear infinite;
    opacity: 0.5;
}

.stars2 {
    background: radial-gradient(1px 1px at 100px 50px, var(--primary), transparent),
                radial-gradient(2px 2px at 200px 150px, var(--secondary-light), transparent),
                radial-gradient(1px 1px at 300px 250px, white, transparent);
    background-size: 400px 400px;
    animation: starsMove 150s linear infinite;
    opacity: 0.3;
}

.stars3 {
    background: radial-gradient(1px 1px at 50px 100px, var(--accent-light), transparent),
                radial-gradient(1px 1px at 150px 50px, var(--primary-light), transparent);
    background-size: 300px 300px;
    animation: starsMove 200s linear infinite;
    opacity: 0.2;
}

@keyframes starsMove {
    from { transform: translateY(0); }
    to { transform: translateY(-1000px); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Particles */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    animation: particleFloat 15s infinite;
    opacity: 0.6;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, transparent 100%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.98);
    padding: 0.8rem 3rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    animation: logoSpin 10s linear infinite;
    filter: drop-shadow(0 0 10px var(--primary));
}

@keyframes logoSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.nav-hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.6);
}

.btn-primary .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: btnGlow 3s infinite;
}

@keyframes btnGlow {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.btn-social {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-social:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-accent);
    font-size: 1.2rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5rem 4rem;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    color: var(--text);
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 5rem;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5)); }
    to { filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.8)); }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Character - AI Girl */
.hero-character {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.character-container {
    position: relative;
    width: 400px;
    height: 500px;
}

.character-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.character-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
}

.ring-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation: ringRotate 20s linear infinite;
}

.ring-2 {
    width: 350px;
    height: 350px;
    top: -175px;
    left: -175px;
    border-color: var(--secondary);
    animation: ringRotate 25s linear infinite reverse;
}

.ring-3 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
    border-color: var(--accent);
    animation: ringRotate 30s linear infinite;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* AI Girl Character */
.ai-girl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 350px;
}

.girl-body {
    position: relative;
    width: 100%;
    height: 100%;
}

.girl-head {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 120px;
    animation: headBob 4s ease-in-out infinite;
}

@keyframes headBob {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    25% { transform: translateX(-50%) translateY(-5px) rotate(2deg); }
    75% { transform: translateX(-50%) translateY(-5px) rotate(-2deg); }
}

.face {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 90px;
    background: linear-gradient(180deg, #fde8d8 0%, #f5d5c8 100%);
    border-radius: 40px 40px 35px 35px;
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.1);
}

.eye {
    position: absolute;
    top: 30px;
    width: 22px;
    height: 28px;
    background: white;
    border-radius: 50%;
    overflow: hidden;
}

.eye-left { left: 12px; }
.eye-right { right: 12px; }

.eye-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    animation: eyeGlow 2s ease-in-out infinite;
}

@keyframes eyeGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.pupil {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    animation: pupilMove 5s ease-in-out infinite;
}

@keyframes pupilMove {
    0%, 100% { transform: translate(-50%, -50%); }
    25% { transform: translate(-30%, -50%); }
    50% { transform: translate(-50%, -30%); }
    75% { transform: translate(-70%, -50%); }
}

.eye-shine {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.nose {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 10px;
    background: #ecc7b5;
    border-radius: 50%;
}

.mouth {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 10px;
}

.lip-upper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 3px;
    background: #e8a090;
    border-radius: 50%;
}

.lip-lower {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    background: #e8a090;
    border-radius: 0 0 10px 10px;
    animation: mouthMove 4s ease-in-out infinite;
}

@keyframes mouthMove {
    0%, 100% { height: 6px; }
    50% { height: 8px; }
}

.blush {
    position: absolute;
    bottom: 25px;
    width: 15px;
    height: 8px;
    background: rgba(244, 114, 182, 0.4);
    border-radius: 50%;
}

.blush-left { left: 5px; }
.blush-right { right: 5px; }

/* Hair */
.hair {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 80px;
}

.hair-back {
    position: absolute;
    top: 10px;
    left: -10px;
    width: 120px;
    height: 140px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 60px 60px 20px 20px;
    z-index: -1;
}

.hair-bangs {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 90px;
    height: 50px;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 45px 45px 10px 10px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 85% 80%, 70% 100%, 50% 85%, 30% 100%, 15% 80%, 0 100%);
}

.hair-strand {
    position: absolute;
    width: 15px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 0 0 10px 10px;
    animation: hairSway 3s ease-in-out infinite;
}

.strand-1 {
    top: 70px;
    left: -15px;
    height: 80px;
    animation-delay: 0s;
}

.strand-2 {
    top: 65px;
    right: -15px;
    height: 90px;
    animation-delay: 0.5s;
}

.strand-3 {
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    height: 60px;
    animation-delay: 1s;
}

@keyframes hairSway {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(5px) rotate(3deg); }
}

.strand-3 {
    animation-name: hairSwayCenter;
}

@keyframes hairSwayCenter {
    0%, 100% { transform: translateX(-50%) rotate(0deg); }
    50% { transform: translateX(-50%) rotate(2deg); }
}

/* Antenna */
.antenna {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 2px;
}

.antenna-light {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--secondary), 0 0 40px var(--secondary);
    animation: antennaGlow 1.5s ease-in-out infinite;
}

@keyframes antennaGlow {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.3); }
}

/* Ears */
.ear {
    position: absolute;
    top: 50px;
    width: 15px;
    height: 25px;
    background: #fde8d8;
    border-radius: 50%;
}

.ear-left { left: -5px; }
.ear-right { right: -5px; }

.earring {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary);
}

/* Body */
.neck {
    position: absolute;
    top: 115px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 25px;
    background: linear-gradient(180deg, #fde8d8 0%, #f5d5c8 100%);
    border-radius: 0 0 15px 15px;
}

.torso {
    position: absolute;
    top: 135px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 120px;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border-radius: 20px 20px 30px 30px;
    border: 2px solid var(--primary);
    box-shadow: inset 0 0 20px rgba(168, 85, 247, 0.2);
}

.collar {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 15px;
    background: var(--primary);
    border-radius: 0 0 25px 25px;
}

.chest-piece {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: rgba(168, 85, 247, 0.2);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chest-light {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    animation: chestPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--primary);
}

@keyframes chestPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.shoulder {
    position: absolute;
    top: 5px;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: 50%;
}

.shoulder-left { left: -10px; }
.shoulder-right { right: -10px; }

/* Arms */
.arm {
    position: absolute;
    top: 145px;
}

.arm-left {
    left: 15px;
    animation: armWaveLeft 4s ease-in-out infinite;
}

.arm-right {
    right: 15px;
    animation: armWaveRight 4s ease-in-out infinite;
}

@keyframes armWaveLeft {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-10deg); }
}

@keyframes armWaveRight {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

.arm-upper {
    width: 18px;
    height: 50px;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 1px solid var(--primary);
    border-radius: 10px;
}

.arm-lower {
    width: 16px;
    height: 45px;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 1px solid var(--primary);
    border-radius: 10px;
    margin-top: -5px;
    margin-left: 1px;
}

.hand {
    width: 20px;
    height: 20px;
    background: #fde8d8;
    border-radius: 10px;
    margin-top: -5px;
    margin-left: -2px;
    display: flex;
    gap: 2px;
    padding: 5px;
}

.finger {
    width: 4px;
    height: 12px;
    background: #fde8d8;
    border-radius: 2px;
}

/* Hologram Effects */
.hologram-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    opacity: 0.5;
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { top: 100%; opacity: 0; }
}

.glitch-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 0%, rgba(168, 85, 247, 0.03) 50%, transparent 100%);
    animation: glitchEffect 0.1s infinite;
    opacity: 0;
}

.ai-girl:hover .glitch-effect {
    opacity: 1;
}

@keyframes glitchEffect {
    0% { transform: translateX(0); }
    25% { transform: translateX(2px); }
    50% { transform: translateX(-2px); }
    75% { transform: translateX(1px); }
    100% { transform: translateX(0); }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.6;
    animation: iconFloat 6s ease-in-out infinite;
}

.icon-1 { top: 10%; left: 5%; animation-delay: 0s; }
.icon-2 { top: 20%; right: 5%; animation-delay: 1.5s; color: var(--secondary); }
.icon-3 { bottom: 30%; left: 10%; animation-delay: 3s; color: var(--accent); }
.icon-4 { bottom: 20%; right: 10%; animation-delay: 4.5s; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-size: 0.85rem;
    animation: fadeInUp 1s ease 1s both;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid var(--primary);
    border-radius: 10px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 14px; opacity: 0.5; }
}

/* Sections Common */
section {
    padding: 6rem 5rem;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.about-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-card .card-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.card-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Terminal Section */
.terminal-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.terminal-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

.terminal-window {
    background: #0d0d12;
    border: 1px solid var(--border);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: linear-gradient(90deg, #1a1a25 0%, #15151f 100%);
    border-bottom: 1px solid var(--border);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.term-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.term-btn.red { background: #ff5f56; }
.term-btn.yellow { background: #ffbd2e; }
.term-btn.green { background: #27ca40; }

.terminal-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-accent);
    color: var(--text-muted);
}

.terminal-icon {
    color: var(--primary);
}

.terminal-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #27ca40;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #27ca40;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.terminal-body {
    height: 400px;
    overflow-y: auto;
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
}

.terminal-body::-webkit-scrollbar {
    width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.terminal-body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.terminal-welcome {
    margin-bottom: 2rem;
}

.ascii-art {
    color: var(--primary);
    font-size: 0.7rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.welcome-text {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.welcome-subtext {
    color: var(--text-dim);
}

.terminal-messages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    animation: messageIn 0.3s ease;
}

@keyframes messageIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message.user .message-content {
    color: var(--secondary);
}

.message.user::before {
    content: '❯ ';
    color: var(--secondary);
}

.message.clawa .message-content {
    color: var(--primary-light);
    padding-left: 1rem;
    border-left: 2px solid var(--primary);
}

.message.clawa::before {
    content: 'CLAWA: ';
    color: var(--primary);
    font-weight: 600;
}

.message-content {
    line-height: 1.6;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 0.5rem 0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
    30% { transform: translateY(-10px); opacity: 1; }
}

.terminal-input-area {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #0a0a0f;
    border-top: 1px solid var(--border);
}

.input-prompt {
    color: var(--secondary);
    font-size: 1.2rem;
}

.terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

.terminal-input::placeholder {
    color: var(--text-dim);
}

.send-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.send-btn svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

/* Terminal Side Panel */
.terminal-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quick-actions {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 1.5rem;
}

.quick-actions h4 {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-btn {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-btn:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: var(--primary);
    transform: translateX(5px);
}

.clawa-mood {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 1.5rem;
}

.clawa-mood h4 {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mood-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mood-emoji {
    font-size: 2rem;
    animation: moodBounce 2s ease-in-out infinite;
}

@keyframes moodBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.mood-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.mood-fill {
    height: 100%;
    width: 80%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 4px;
    animation: moodPulse 3s ease-in-out infinite;
}

@keyframes moodPulse {
    0%, 100% { width: 80%; }
    50% { width: 90%; }
}

/* Tokenomics Section */
.tokenomics-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.token-chart {
    display: flex;
    justify-content: center;
}

.chart-ring {
    position: relative;
    width: 280px;
    height: 280px;
}

.chart-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.chart-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 25;
}

.chart-segment {
    fill: none;
    stroke-width: 25;
    stroke-dasharray: 502;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease;
}

.seg-1 {
    stroke: var(--primary);
    stroke-dashoffset: 150;
    animation: chartAnim1 2s ease forwards;
}

.seg-2 {
    stroke: var(--secondary);
    stroke-dashoffset: 401;
    animation: chartAnim2 2s ease 0.3s forwards;
}

.seg-3 {
    stroke: var(--accent);
    stroke-dashoffset: 451;
    animation: chartAnim3 2s ease 0.6s forwards;
}

@keyframes chartAnim1 {
    to { stroke-dashoffset: 150; }
}

@keyframes chartAnim2 {
    to { stroke-dashoffset: 401; }
}

@keyframes chartAnim3 {
    to { stroke-dashoffset: 451; }
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-symbol {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.chart-total {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--text-muted);
}

.token-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.token-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.token-item:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.token-color {
    width: 20px;
    height: 20px;
    border-radius: 6px;
}

.color-1 { background: var(--primary); }
.color-2 { background: var(--secondary); }
.color-3 { background: var(--accent); }

.token-info {
    flex: 1;
}

.token-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.token-percent {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
}

.token-amount {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.token-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    font-family: var(--font-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Roadmap Section */
.roadmap-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
}

.roadmap-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.roadmap-marker {
    width: 100px;
    height: 100px;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.roadmap-item.active .roadmap-marker {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: var(--glow);
}

.marker-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.roadmap-item.active .marker-number {
    color: white;
}

.roadmap-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 2rem;
    flex: 1;
    transition: all 0.3s ease;
}

.roadmap-item:hover .roadmap-content {
    border-color: var(--primary);
    transform: translateX(10px);
}

.roadmap-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.roadmap-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.roadmap-content li {
    color: var(--text-muted);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.roadmap-content li::before {
    content: '◈';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.roadmap-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roadmap-status.completed {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.roadmap-status.in-progress {
    background: rgba(168, 85, 247, 0.2);
    color: var(--primary);
    animation: statusPulse 2s infinite;
}

.roadmap-status.upcoming {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-dim);
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* CTA Section */
.cta-section {
    padding: 6rem 5rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hex {
    position: absolute;
    font-size: 10rem;
    color: var(--primary);
    opacity: 0.05;
    animation: hexFloat 10s ease-in-out infinite;
}

.hex-1 { top: -20%; left: 10%; animation-delay: 0s; }
.hex-2 { bottom: -20%; right: 10%; animation-delay: 3s; }
.hex-3 { top: 50%; left: 80%; animation-delay: 6s; }

@keyframes hexFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(30deg); }
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 4rem 5rem 2rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-family: var(--font-accent);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: 6rem 3rem 3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-character {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .character-container {
        width: 300px;
        height: 400px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .terminal-wrapper {
        grid-template-columns: 1fr;
    }
    
    .terminal-side {
        flex-direction: row;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
    }
    
    .token-chart {
        margin-bottom: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .nav-links,
    .nav-buttons {
        display: none;
    }
    
    .nav-hamburger {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero {
        padding: 5rem 1.5rem 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-highlight {
        font-size: 3rem;
    }
    
    section {
        padding: 4rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .terminal-side {
        flex-direction: column;
    }
    
    .roadmap-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .timeline-line {
        display: none;
    }
    
    .token-features {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    /* Hide custom cursor on mobile */
    .custom-cursor,
    .cursor-follower {
        display: none;
    }
    
    body {
        cursor: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .title-highlight {
        font-size: 2.5rem;
    }
    
    .character-container {
        width: 250px;
        height: 350px;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}
