:root {
    --primary: #6E44FF;
    --secondary: #B892FF;
    --accent: #FF4A4A;
    --dark: #0A0A12;
    --darker: #050508;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text: #F0F0F5;
    --text-dim: #A0A0B0;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --glow: 0 0 20px rgba(110, 68, 255, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--darker);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Background Glows */
.glow-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(circle, rgba(110, 68, 255, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(10, 10, 18, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    z-index: 1000;
    padding: 12px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 32px;
}

.brand {
    font-size: 22px;
    font-weight: 800;
    background: var(--white);
    -webkit-background-clip: text;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-btn {
    background: var(--text);
    color: var(--dark) !important;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 800 !important;
    transition: all 0.3s ease !important;
}

.nav-btn:hover {
    background: var(--primary);
    color: var(--white) !important;
    box-shadow: var(--glow);
}

/* Hero Section */
.hero-2025 {
    padding: 180px 0 100px;
    position: relative;
}

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

.badge-new {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(110, 68, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(110, 68, 255, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtext {
    font-size: 20px;
    color: var(--text-dim);
    margin-bottom: 48px;
    max-width: 600px;
}

.store-buttons {
    display: flex;
    gap: 24px;
    margin-top: 40px;
}

.custom-store-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 220px;
}

.custom-store-btn i {
    font-size: 36px;
}

.custom-store-btn.apple i {
    margin-top: -4px;
}

.btn-label {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-label span {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 400;
    color: #ccc;
}

.btn-label strong {
    font-size: 20px;
    font-weight: 700;
}

.custom-store-btn:hover {
    transform: translateY(-5px);
    background: #111;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(110, 68, 255, 0.2);
}

.custom-store-btn.google i {
    background: linear-gradient(45deg, #4285F4, #EA4335, #FBBC05, #34A853);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.store-cta:hover img {
    transform: translateY(-8px) scale(1.05);
    filter: brightness(1.2);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    perspective: 1000px;
}

.main-mockup {
    width: 100%;
    max-width: 650px;
    border-radius: 40px;
    box-shadow: 0 0 80px rgba(110, 68, 255, 0.4);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid var(--glass-border);
}

.main-mockup:hover {
    transform: rotateY(-5deg) rotateX(2deg);
}

.map-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, var(--darker) 95%);
    pointer-events: none;
    border-radius: 40px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    z-index: 10;
    padding: 16px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float-card 6s ease-in-out infinite;
    min-width: 180px;
}

.alert-card-1 {
    top: 10%;
    right: -20px;
    border-left: 3px solid var(--accent) !important;
}

.alert-card-2 {
    bottom: 15%;
    left: -40px;
    animation-delay: -2s;
    border-left: 3px solid var(--primary) !important;
}

.pulse-red {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: blink 1.5s infinite;
}

.card-info {
    display: flex;
    flex-direction: column;
}

.alert-type,
.label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-dim);
}

.alert-loc,
.count {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.alert-card-2 i {
    color: var(--primary);
    font-size: 20px;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-15px) translateX(10px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-30px) rotate(2deg);
    }
}

/* Bento Grid */
.bento-section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
}

.bento-item {
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.bento-item.large {
    grid-column: span 2;
}

.bento-item.tall {
    grid-row: span 2;
}

.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.glass-card:hover {
    border-color: rgba(110, 68, 255, 0.4);
    background: rgba(110, 68, 255, 0.05);
}

.icon-glow {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
    display: block;
    text-shadow: 0 0 10px var(--primary);
}

.bento-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.bento-item p {
    color: var(--text-dim);
    font-size: 15px;
}

/* Vision Section */
.vision-2025 {
    padding: 100px 0;
}

.vision-card {
    padding: 100px 60px;
    border-radius: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-card h2 {
    font-size: 52px;
    margin-bottom: 24px;
}

.vision-card p {
    font-size: 28px;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto 32px;
    color: var(--text);
}

.signature {
    font-size: 14px;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer */
.futuristic-footer {
    padding: 80px 0 40px;
    background: var(--darker);
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 60px;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    position: relative;
}

.cta-card {
    padding: 80px 40px;
    border-radius: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(110, 68, 255, 0.05) 0%, rgba(10, 10, 18, 0.8) 100%);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(110, 68, 255, 0.3) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.cta-card h2 {
    font-size: 52px;
    margin-bottom: 24px;
}

.cta-card p {
    font-size: 18px;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 48px;
}

.store-buttons.centered {
    justify-content: center;
    flex-wrap: wrap;
}

/* Updated Footer */
.futuristic-footer {
    padding: 60px 0 40px;
    background: var(--darker);
    border-top: 1px solid var(--glass-border);
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-tagline {
    color: var(--text-dim);
    font-size: 14px;
    font-weight: 400;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-divider {
    height: 1px;
    background: var(--glass-border);
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-dim);
}

.status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hublink {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.hublink:hover {
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(110, 68, 255, 0.3);
}

.copyright-link {
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.copyright-link:hover {
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
}

.footer-info p {
    color: var(--text-dim);
    margin-top: 20px;
    max-width: 300px;
}

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

.link-col h4 {
    margin-bottom: 24px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text);
}

.link-col a {
    display: block;
    text-decoration: none;
    color: var(--text-dim);
    margin-bottom: 12px;
    font-size: 14px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    font-size: 13px;
    color: var(--text-dim);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.faq-item {
    padding: 32px;
    border-radius: 24px;
    transition: all 0.4s ease;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text);
}

.faq-item p {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.7;
}

.faq-item:hover {
    transform: translateY(-5px);
}


/* Responsive */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 60px;
    }

    .bento-grid {
        grid-template-rows: auto;
        grid-template-columns: 1fr;
    }

    .bento-item.large,
    .bento-item.tall {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-subtext {
        margin: 0 auto 40px;
    }

    .store-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .container {
        padding: 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info p {
        margin: 20px auto;
    }

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