:root {
    --bg-light: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --accent-gold: #c09941;
    --accent-gold-light: rgba(192, 153, 65, 0.1);
    --border-color: rgba(0, 0, 0, 0.08);
}

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

body {
    background-color: var(--bg-light);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Dynamic Halftone Background */
.halftone-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--bg-light);
}

.halftone-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--accent-gold) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.6;
    --mouse-x: 50%;
    --mouse-y: 50%;
    mask-image: radial-gradient(circle 350px at var(--mouse-x) var(--mouse-y), black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle 350px at var(--mouse-x) var(--mouse-y), black 0%, transparent 100%);
    transition: opacity 0.3s ease;
}

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

/* Navbar */
.navbar {
    padding: 2.5rem 0;
    position: relative;
    z-index: 10;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent-gold);
    font-weight: 400;
    font-style: italic;
}

.contact-btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background-color: transparent;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--accent-gold);
    color: white;
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(192, 153, 65, 0.25);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0 6rem;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-group {
    margin-bottom: 2rem;
}

.badge {
    display: inline-block;
    background: var(--accent-gold-light);
    color: var(--accent-gold);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(192, 153, 65, 0.3);
    box-shadow: 0 4px 12px rgba(192, 153, 65, 0.15);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 90%;
}

/* Download Section Updates */
.download-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.apk-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--text-primary);
    color: var(--bg-light);
    text-decoration: none;
    padding: 0 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--text-primary);
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.apk-btn:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: white;
    transform: translateY(-3px);
}

.apk-icon {
    display: flex;
    align-items: center;
}

.apk-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.coming-soon-stores {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.coming-soon-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-style: italic;
}

.store-badges {
    display: flex;
    gap: 1rem;
}

.store-btn {
    display: inline-flex;
    height: 48px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.store-btn img {
    height: 100%;
    width: auto;
}

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

.store-btn.disabled {
    opacity: 0.35;
    filter: grayscale(100%);
    cursor: not-allowed;
    pointer-events: none;
}

/* Hero Image & Device Frame */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
    border-radius: 24px;
    pointer-events: none;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Features Section */
.features-section {
    padding: 2rem 0 6rem;
    position: relative;
    z-index: 10;
}

.features-card, .why-us-card, .faq-card, .glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.04), 0 0 0 1px var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    text-align: center;
}

.feature-item {
    padding: 2.5rem 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(192, 153, 65, 0.08);
    border-color: rgba(192, 153, 65, 0.2);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--accent-gold-light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: var(--accent-gold);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 2rem 0 8rem;
    position: relative;
    z-index: 10;
}

.contact-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.04), 0 0 0 1px var(--border-color);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--text-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.team-member {
    padding: 2.5rem 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(192, 153, 65, 0.12);
    border-color: rgba(192, 153, 65, 0.2);
}

.role {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
}

/* Why Us Section */
.why-us-section {
    padding: 2rem 0 6rem;
    position: relative;
    z-index: 10;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}
.benefit-item {
    text-align: left;
}
.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent-gold-light);
    color: var(--accent-gold);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}
.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}
.benefit-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.benefit-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 2rem 0 6rem;
    position: relative;
    z-index: 10;
}
.glass-panel {
    display: flex;
    gap: 4rem;
    align-items: center;
}
.about-text {
    flex: 1;
}
.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.about-text p:last-child {
    margin-bottom: 0;
}
.section-title.left-align {
    text-align: left;
    margin-bottom: 2rem;
}
.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(192, 153, 65, 0.1), rgba(192, 153, 65, 0.02));
    border-radius: 24px;
    min-height: 300px;
    border: 1px solid rgba(192, 153, 65, 0.15);
}
.visual-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--accent-gold);
}
.visual-badge svg {
    width: 64px;
    height: 64px;
    stroke-width: 1.2;
}
.visual-badge span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 2rem 0 6rem;
    position: relative;
    z-index: 10;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}
.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}
.faq-answer {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .contact-card, .features-card, .why-us-card, .faq-card, .glass-panel {
        padding: 3rem 2rem;
    }
}

@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3.5rem;
        padding: 2rem 0 4rem;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .download-section {
        align-items: center;
    }
    
    .store-badges {
        justify-content: center;
    }
    
    .image-frame {
        transform: none;
    }
    
    .image-frame:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .team-grid, .features-grid {
        gap: 2rem;
    }
    
    .team-member, .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .glass-panel {
        flex-direction: column;
    }
    
    .section-title.left-align {
        text-align: center;
    }
    
    .about-text p {
        text-align: center;
    }
}
