:root {
    --orange: #FF6B35;
    --purple: #7C3AED;
    --cyan: #06B6D4;
    --bg: #0a0a0f;
    --bg-card: #16161f;
    --text: #f0f0f5;
    --text-dim: #a0a0b0;
    --border: #2a2a3a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}
a { color: inherit; text-decoration: none; }

/* Animated Gradient Blobs */
.bg-gradient {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--orange);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--purple);
    top: 50%;
    right: -150px;
    animation-delay: -7s;
    animation-duration: 25s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--cyan);
    bottom: -100px;
    left: 20%;
    animation-delay: -14s;
    animation-duration: 22s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Container */
.container { max-width: 1000px; margin: 0 auto; padding: 0 2rem; }

/* Nav */
nav { position: fixed; top: 0; width: 100%; z-index: 100; padding: 1rem 0; background: rgba(10, 10, 15, 0.8); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; }
.logo img { width: 32px; height: 32px; border-radius: 8px; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--text-dim); font-size: 0.9375rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--text); }

/* Hero */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 8rem 2rem; }
.badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(255, 107, 53, 0.1); border: 1px solid rgba(255, 107, 53, 0.2); border-radius: 100px; font-size: 0.875rem; margin-bottom: 2rem; }
.dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hero-icon { width: 120px; height: 120px; border-radius: 24px; margin-bottom: 2rem; box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3); }
h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 1rem; letter-spacing: -0.02em; }
.gradient { background: linear-gradient(135deg, var(--orange), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.subtitle { font-size: clamp(1.125rem, 3vw, 1.375rem); color: var(--text-dim); max-width: 600px; margin: 0 auto 3rem; }

/* Buttons */
.btn { display: inline-block; padding: 1rem 2rem; background: linear-gradient(135deg, var(--orange), #E85A28); color: white; border-radius: 12px; font-weight: 600; transition: transform 0.3s, box-shadow 0.3s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4); }
.btn-large { padding: 1rem 3rem; font-size: 1.125rem; }

/* Stats */
.stats { display: flex; gap: 3rem; margin-top: 3rem; flex-wrap: wrap; justify-content: center; }
.stats div { text-align: center; }
.stats strong { display: block; font-size: 2.5rem; background: linear-gradient(135deg, #FF8A5C, var(--orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stats span { display: block; font-size: 0.875rem; color: #606070; margin-top: 0.25rem; }

/* Features */
.features { padding: 4rem 0; }
.features h2 { font-size: clamp(2rem, 5vw, 3rem); text-align: center; margin-bottom: 3rem; }
.feature-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.feature { display: flex; gap: 1.5rem; padding: 1.5rem; background: rgba(22, 22, 31, 0.6); backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: 16px; transition: all 0.3s; }
.feature:hover { border-color: rgba(255, 107, 53, 0.3); transform: translateX(8px); }
.feature .icon { font-size: 2.5rem; flex-shrink: 0; }
.feature h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.feature p { color: var(--text-dim); }

/* Download */
.download { padding: 4rem 0; text-align: center; }
.download h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
.download p { color: var(--text-dim); margin-bottom: 2rem; }

/* Footer */
footer { padding: 4rem 0 2rem; border-top: 1px solid var(--border); margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; margin-bottom: 1rem; }
.footer-logo img { width: 32px; height: 32px; border-radius: 8px; }
footer h4 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; color: #606070; }
footer a { display: block; color: var(--text-dim); margin-bottom: 0.5rem; transition: color 0.3s; }
footer a:hover { color: var(--orange); }
.copyright { text-align: center; padding-top: 2rem; border-top: 1px solid var(--border); color: #606070; font-size: 0.875rem; }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .feature { flex-direction: column; text-align: center; }
    .blob { opacity: 0.3; }
}

/* Floating Cats */
.floating-cats {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-cat {
    position: absolute;
    width: 60px;
    height: auto;
    opacity: 0.2;
}

/* Cat 1: Flies left to right across top */
.floating-cat:nth-child(1) {
    top: 12%;
    animation: fly-right 25s linear infinite;
}

/* Cat 2: Flies right to left across middle */
.floating-cat:nth-child(2) {
    top: 45%;
    animation: fly-left 30s linear infinite;
    animation-delay: -8s;
}

/* Cat 3: Flies left to right across bottom */
.floating-cat:nth-child(3) {
    top: 75%;
    width: 50px;
    animation: fly-right 35s linear infinite;
    animation-delay: -15s;
}

/* Cat 4: Diagonal flight */
.floating-cat:nth-child(4) {
    width: 55px;
    animation: fly-diagonal 28s linear infinite;
    animation-delay: -5s;
}

@keyframes fly-right {
    0% {
        left: -100px;
        transform: scaleX(1) translateY(0) rotate(0deg);
    }
    25% {
        transform: scaleX(1) translateY(-30px) rotate(-3deg);
    }
    50% {
        transform: scaleX(1) translateY(20px) rotate(2deg);
    }
    75% {
        transform: scaleX(1) translateY(-15px) rotate(-2deg);
    }
    100% {
        left: calc(100% + 100px);
        transform: scaleX(1) translateY(0) rotate(0deg);
    }
}

@keyframes fly-left {
    0% {
        right: -100px;
        left: auto;
        transform: scaleX(-1) translateY(0) rotate(0deg);
    }
    25% {
        transform: scaleX(-1) translateY(25px) rotate(3deg);
    }
    50% {
        transform: scaleX(-1) translateY(-20px) rotate(-2deg);
    }
    75% {
        transform: scaleX(-1) translateY(15px) rotate(2deg);
    }
    100% {
        right: calc(100% + 100px);
        left: auto;
        transform: scaleX(-1) translateY(0) rotate(0deg);
    }
}

@keyframes fly-diagonal {
    0% {
        left: -100px;
        top: 80%;
        transform: scaleX(1) rotate(-5deg);
    }
    50% {
        transform: scaleX(1) rotate(5deg);
    }
    100% {
        left: calc(100% + 100px);
        top: 15%;
        transform: scaleX(1) rotate(-5deg);
    }
}

@media (max-width: 768px) {
    .floating-cat {
        width: 40px;
        opacity: 0.15;
    }
    .floating-cat:nth-child(3),
    .floating-cat:nth-child(4) {
        display: none;
    }
}
