:root {
    --primary: #8338ec;
    --secondary: #3a86ff;
    --bg: #050510;
    --text: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Decorations */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: move 20s infinite alternate;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
}

@keyframes move {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(100px, 100px);
    }
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 10%;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(to right, var(--text), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--text);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(131, 56, 236, 0.3);
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(131, 56, 236, 0.5);
}

.btn-primary.small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-secondary {
    border: 1px solid var(--glass-border);
    background: var(--glass);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 1rem;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 5rem 10%;
    gap: 4rem;
}

.badge {
    background: var(--glass);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    margin-bottom: 2rem;
    display: inline-block;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

h1 span {
    display: block;
    color: var(--secondary);
}

header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
}

/* Glass UI Elements */
.hero-visual {
    display: flex;
    justify-content: center;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    width: 350px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.card-header {
    font-size: 0.9rem;
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.card-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.chart-line {
    height: 40px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    margin-bottom: 2rem;
    border-radius: 5px;
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.calc-grid span {
    height: 40px;
    background: var(--glass);
    border-radius: 8px;
}

/* Features Section */
.features {
    padding: 8rem 10%;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 3rem 2rem;
    border-radius: 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.5);
}

/* App Download Card */
.app-download-card {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
    transition: transform 0.3s ease;
}

.app-download-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.app-icon img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.app-info {
    text-align: left;
}

.app-info .tag {
    font-size: 0.75rem;
    color: #3DDC84;
    /* Android Brand Color */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.app-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.app-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.btn-download {
    background: #3DDC84;
    color: #050510;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    margin-left: 10px;
    transition: all 0.2s ease;
}

.btn-download:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(61, 220, 132, 0.4);
}

/* Footer */
footer {
    padding: 8rem 10% 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5rem;
}

.footer-info p {
    margin-top: 1rem;
    opacity: 0.5;
}

.footer-links {
    display: flex;
    gap: 5rem;
}

.link-group h4 {
    margin-bottom: 1.5rem;
}

.link-group a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.8rem;
    transition: 0.3s;
}

.link-group a:hover {
    color: var(--text);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    opacity: 0.3;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    header {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
        gap: 2rem;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-visual {
        display: flex !important;
        /* Force visible */
        justify-content: center;
        margin-top: 2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .app-download-card {
        margin: 3rem auto 0;
        /* Center on mobile */
    }
}