@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --bg-main: #0F121F;
    --bg-secondary: #161A2E;
    --card-bg: rgba(27, 31, 51, 0.75);
    --card-hover: rgba(35, 41, 66, 0.9);
    --primary: #7C5CFF;
    --primary-glow: rgba(124, 92, 255, 0.4);
    --accent: #F4C95D;
    --accent-glow: rgba(244, 201, 93, 0.3);
    --text-main: #FFFFFF;
    --text-muted: #A7A9B8;
    --border: rgba(124, 92, 255, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, .brand-text {
    font-family: 'Outfit', sans-serif;
}

/* Background Gradients */
.bg-glow {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(circle at 20% 20%, rgba(124, 92, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 201, 93, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 18, 31, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

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

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.brand-title {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFF 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.btn-download {
    background: linear-gradient(135deg, var(--primary) 0%, #633BFF 100%);
    color: #FFF;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

/* Hero Section */
.hero {
    padding: 160px 8% 80px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    min-height: 90vh;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(244, 201, 93, 0.15);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.playstore-btn {
    background: #000;
    border: 1px solid var(--border);
    padding: 12px 28px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #FFF;
    transition: all 0.3s ease;
}

.playstore-btn:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.playstore-text .sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    text-transform: uppercase;
}

.playstore-text .main {
    font-size: 1.1rem;
    font-weight: 700;
}

/* App Mockup with Real Screenshots */
.hero-mockup-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

.phone-frame {
    width: 290px;
    height: 590px;
    background: #000;
    border: 10px solid #2A2F45;
    border-radius: 46px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.7), 0 0 50px var(--primary-glow);
    overflow: hidden;
    position: relative;
}

/* Notch / Island */
.phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 18px;
    background: #2A2F45;
    border-radius: 12px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
}

.screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.screen-img.active {
    opacity: 1;
}

.slider-controls {
    display: flex;
    gap: 8px;
    background: var(--card-bg);
    padding: 6px 12px;
    border-radius: 30px;
    border: 1px solid var(--border);
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent);
    opacity: 1;
    width: 24px;
    border-radius: 10px;
}

.screen-caption {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    min-height: 24px;
}

.badge-float {
    position: absolute;
    padding: 12px 20px;
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    animation: float 4s ease-in-out infinite;
    z-index: 20;
}

.badge-1 {
    top: 40px;
    left: -40px;
}

.badge-2 {
    bottom: 100px;
    right: -30px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Features Section */
.features {
    padding: 100px 8%;
    background: rgba(22, 26, 46, 0.5);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 28px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--card-hover);
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
footer {
    padding: 60px 8% 40px;
    border-top: 1px solid var(--border);
    background: var(--bg-main);
    text-align: center;
}

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

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 130px;
    }
    .hero p {
        margin: 0 auto 36px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .badge-float {
        display: none;
    }
}
