/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background: linear-gradient(135deg, #16111c 0%, #2b2731 100%);
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #a86eff; /* Using app's primary purple color */
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: #BBBBBB;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    background: rgba(43, 39, 49, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(168, 110, 255, 0.2);
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

header.scrolled {
    background: rgba(43, 39, 49, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #a86eff;
    text-decoration: none;
    transition: all 0.3s ease;
}

header.scrolled .logo {
    font-size: 1.25rem;
}

.logo img {
    height: 40px;
    width: auto;
    border-radius: 50%;
    padding: 4px 0;
    transition: all 0.3s ease;
}

header.scrolled .logo img {
    height: 32px;
}







.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #a86eff;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, #16111c 0%, #2b2731 50%, #16111c 100%);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #a86eff, #c99eff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #BBBBBB;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #a86eff, #c99eff);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(168, 110, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 110, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #a86eff;
}

.btn-secondary:hover {
    background: #a86eff;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #16111c;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #2b2731;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(168, 110, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(168, 110, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a86eff, #c99eff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #FFFFFF;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #a86eff;
}

.feature-card p {
    color: #BBBBBB;
}

/* Screenshots Section - Commented out for development */
/*
.screenshots {
    padding: 5rem 0;
    background: #2b2731;
    text-align: center;
}

.screenshots h2 {
    margin-bottom: 3rem;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.screenshot {
    background: #16111c;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.screenshot img {
    width: 100%;
    height: auto;
    display: block;
}
*/

/* Phone Mockup Section - Commented out for development */
/*
.phone-mockup {
    padding: 5rem 0;
    background: #16111c;
    text-align: center;
}

.phone-mockup h2 {
    margin-bottom: 3rem;
}

.mockup-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.mockup-phone {
    position: relative;
    width: 300px;
    height: 600px;
    background: #2b2731;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mockup-screen {
    width: 100%;
    height: 100%;
    background: #16111c;
    border-radius: 20px;
    overflow: hidden;
}

.mockup-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mockup-content {
    flex: 1;
    max-width: 500px;
}

.mockup-content h3 {
    margin-bottom: 1rem;
    color: #a86eff;
}

.mockup-content p {
    color: #BBBBBB;
    margin-bottom: 2rem;
}
*/

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: #2b2731;
    text-align: center;
}

.pricing h2 {
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #16111c;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(168, 110, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #a86eff;
}

.pricing-card.featured {
    border-color: #a86eff;
    background: linear-gradient(135deg, #16111c, #2b2731);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-card h3 {
    margin-bottom: 0.5rem;
    color: #a86eff;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: #BBBBBB;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #BBBBBB;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li::before {
    content: "✓";
    color: #a86eff;
    font-weight: bold;
}

/* Download Section */
.download {
    padding: 5rem 0;
    background: #16111c;
    text-align: center;
}

.download h2 {
    margin-bottom: 3rem;
}

.download p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #BBBBBB;
}

/* Store Links - Commented out for development */
/*
.store-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.store-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #2b2731;
    border-radius: 15px;
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 110, 255, 0.2);
}

.store-link:hover {
    background: #a86eff;
    transform: translateY(-2px);
}

.store-link img {
    height: 40px;
    width: auto;
}
*/

/* Footer */
footer {
    background: #16111c;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(168, 110, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #a86eff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #BBBBBB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #a86eff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(168, 110, 255, 0.1);
    color: #BBBBBB;
}

/* Legal Pages Styles */
.legal-content {
    padding: 8rem 0 4rem;
    background: #16111c;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    color: #a86eff;
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 1rem;
    color: #BBBBBB;
    font-style: italic;
    margin-bottom: 0;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #a86eff;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(168, 110, 255, 0.2);
}

.legal-section h3 {
    color: #a86eff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #BBBBBB;
}

.legal-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #BBBBBB;
}

.contact-info {
    background: #2b2731;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #a86eff;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #BBBBBB;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(43, 39, 49, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
        transform: translateY(0);
    }
    
    .nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(168, 110, 255, 0.2);
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    /* Store Links - Commented out for development */
    /*
    .store-links {
        flex-direction: column;
        align-items: center;
    }
    
    .store-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    */
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #16111c;
}

::-webkit-scrollbar-thumb {
    background: #a86eff;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c99eff;
} 