@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
:root {
    --bg-dark: #03060a;
    --text-white: #ffffff;
    --text-muted: #9ca3af;
    --primary-orange: #f37021;
    --accent-yellow: #fff200;
    --badge-bg: #1c0d02;
    --badge-border: rgba(243, 112, 33, 0.35);
    --badge-text: #f97316;
    --font-outfit: 'Outfit', sans-serif;
        --glow-orange: rgba(243, 112, 33, 0.15);
    --glow-yellow: rgba(255, 242, 0, 0.04);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-outfit);
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #040810;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #334155;
}
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
   padding: 48px 0;
    background-color: var(--bg-dark);
    overflow: hidden;
    width: 100%;
}
.ambient-glow-right {
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, var(--glow-orange) 0%, var(--glow-yellow) 45%, rgba(3, 6, 10, 0) 70%);
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    filter: blur(40px);
}
.ambient-glow-left {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.04) 0%, rgba(3, 6, 10, 0) 70%);
    top: -10%;
    left: -10%;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    filter: blur(30px);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.brand-logo {
    max-width: 210px;
    height: auto;
    object-fit: contain;
}

.badge-container {
    display: inline-block;
}

.sales-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--badge-bg);
    border: 1px solid var(--badge-border);
    color: var(--badge-text);
    font-size: 15.2px;
    font-weight: 500;
    padding: 8px 22px;
    border-radius: 100px;
    letter-spacing: 0.32px;
    box-shadow: 0 4px 20px rgba(243, 112, 33, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sales-badge:hover {
    border-color: rgba(243, 112, 33, 0.7);
    color: #fff;
    box-shadow: 0 4px 25px rgba(243, 112, 33, 0.2);
    transform: translateY(-1px);
}
.hero-title {
   font-size: 58px;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.4px;
    color: var(--text-white);
    overflow-wrap: break-word;
    word-break: break-word;
}
.hero-subtitle {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-white);
    max-width: 580px;
}
.download-buttons {
    display: flex;
    gap: 0.9rem;
    flex-wrap: nowrap; 
}

.store-btn {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.store-btn img {
    height: 68px; 
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.store-btn:hover {
    transform: translateY(-3px) scale(1.02);
}

.store-btn:hover img {
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.15);
}
.mockup-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.mockup-image {
    max-width: 92%;
    height: auto;
    object-fit: contain;
}
@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}
@media (min-width: 1400px) {
    .hero-title {
        font-size: 72px;
    }
    
    .hero-subtitle {
        font-size: 19.2px;
        max-width: 610px;
    }
    
    .mockup-image {
        max-width: 88%;
    }
}
@media (max-width: 1200px) {
    .hero-title {
        font-size: 56px;
    }
    
    .mockup-image {
        max-width: 95%;
    }
}
@media (max-width: 991.98px) {
    .hero-section {
        padding: 64px 0;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 56px;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .ambient-glow-right {
        width: 500px;
        height: 500px;
        top: 75%;
        right: 50%;
        transform: translate(50%, -50%);
    }
    
    .mockup-image {
        max-width: 80%;
       
    }
}
@media (max-width: 575.98px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .brand-logo {
        max-width: 170px;
margin-bottom: 40px !important;
    }
    
    .sales-badge {
        font-size: 13.6px;
        padding: 8px 17.6px;
    }
    
    .hero-title {
        font-size: 36.8px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 32px !important;
    }
    
    .download-buttons {
        gap: 12.8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .store-btn img {
        height: 42px;
    }
    
    .mockup-image {
        max-width: 100%;
    }
    
    .ambient-glow-right {
        width: 350px;
        height: 350px;
        filter: blur(30px);
    }
}



 

