@charset "UTF-8";

:root {
    --navy: #1A252F;
    --navy-dark: #0D151B;
    --navy-light: #2C3E50;
    --yellow: #FFD700;
    --yellow-glow: rgba(255, 215, 0, 0.4);
    --purple: #9B59B6;
    --accent-blue: #3498DB;
    --text-main: #FFFFFF;
    --text-muted: #BDC3C7;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --container: 1200px;
}

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

body {
    background-color: var(--navy-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* NAVBAR */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

header.scrolled {
    background: rgba(13, 21, 27, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo-text {
    font-size: 1.8rem;
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--yellow);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--purple));
    color: white;
}

.btn-yellow {
    background: var(--yellow);
    color: var(--navy-dark);
    box-shadow: 0 0 20px var(--yellow-glow);
}

.btn-xl {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-yellow:hover {
    box-shadow: 0 0 30px var(--yellow-glow);
}

/* HERO SECTION */
.hero-section {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
    background: linear-gradient(135deg, var(--yellow), #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-ctas-row {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px);
    }
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-glow {
    display: none;
}

/* FEATURES */
.features-section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: var(--accent-blue);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* MODES SECTION */
.modes-section {
    padding: 8rem 0;
}

.gray-bg {
    background-color: var(--navy);
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mode-item {
    background: var(--navy-dark);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.badge.blue {
    background: rgba(52, 152, 219, 0.2);
    color: var(--accent-blue);
}

.badge.purple {
    background: rgba(155, 89, 182, 0.2);
    color: var(--purple);
}

.feature-list {
    margin-top: 1.5rem;
    list-style: none;
}

.feature-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: bold;
}

/* VALUE PROP */
.value-prop-section {
    padding: 6rem 0;
    border-top: 1px solid var(--glass-border);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--yellow);
}

/* CTA SECTION */
.cta-section {
    padding: 4rem 0 8rem;
}

.cta-bg {
    background: linear-gradient(135deg, var(--accent-blue), var(--purple));
    padding: 5rem;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cta-bg h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-bg p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.btn-white {
    background: white;
    color: var(--navy-dark);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

/* FOOTER */
footer {
    padding: 4rem 0;
    background: var(--navy-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 3rem;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
}

.footer-nav a {
    text-decoration: none;
    color: var(--text-muted);
    margin: 0 1rem;
}

@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .navbar {
        flex-direction: column;
        gap: 1.5rem;
    }

    nav ul {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-grid,
    .features-grid,
    .modes-grid,
    .value-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-img {
        max-width: 400px;
        margin-top: 3rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        gap: 1rem;
        width: 100%;
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        display: flex;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn-xl {
        padding: 1rem 1.8rem;
        font-size: 1rem;
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .mode-item {
        padding: 2rem;
    }

    .cta-bg {
        padding: 3rem 1.5rem;
    }

    .cta-bg h2 {
        font-size: 2rem;
    }
}
/* QR Code Styles */
.qr-badge-container {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    width: fit-content;
    backdrop-filter: blur(5px);
}

.qr-code {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: white;
    padding: 4px;
    display: block;
}

.qr-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 130px;
    line-height: 1.4;
    text-align: left;
}

.qr-text strong {
    color: var(--yellow);
    display: block;
    margin-bottom: 2px;
}

.store-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.store-badge {
    height: 40px;
    width: 135px;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.store-badge:hover {
    opacity: 1;
}

.store-badge.apple { background-image: url('https://tools.applemediaservices.com/api/badges/download-on-the-app-store/black/en-us?size=250x83&releaseDate=1314316800&h=7918c859d04732168cad361e6af72911'); }
.store-badge.google { background-image: url('https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png'); }

@media (max-width: 992px) {
    .hero-ctas-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .qr-badge-container {
        margin: 0 auto;
    }
}
