:root {
    --primary-color: #020817;
    --secondary-color: #1a365d;
    --accent-color: #5145CD;
    --text-color: #e2e8f0;
    --dark-bg: #0a1124;
    --card-bg: #111827;
    --light-text: #f8fafc;
    --light-bg: #1e293b;
    --orange-accent: #FF6B1A;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--primary-color);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    height: 40px;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--orange-accent);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tagline {
    padding: 4rem 0;
    text-align: center;
    background: var(--primary-color);
}

.tagline h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--orange-accent);
}

.tagline p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
}

.features {
    padding: 4rem 0;
    background: var(--dark-bg);
}

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

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--orange-accent);
}

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

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.feature-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--light-text);
}

.zond-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #060e24, #13213d);
    color: white;
    text-align: center;
}

.zond-content {
    max-width: 800px;
    margin: 0 auto;
}

.zond-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--orange-accent);
}

.zond-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.screenshots {
    padding: 4rem 0;
    background: var(--primary-color);
}

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

.screenshot {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.qr-section {
    text-align: center;
    padding: 4rem 0;
    background: var(--dark-bg);
}

.qr-code {
    max-width: 200px;
    margin: 2rem auto;
    background: white;
    padding: 1rem;
    border-radius: 8px;
}

footer {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.faq-section {
    padding: 4rem 0;
    background: var(--secondary-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--card-bg);
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--light-text);
}

.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    transition: max-height 0.5s ease, padding 0.5s ease;
    color: var(--text-color);
}

.faq-answer p, .faq-answer ul {
    margin-bottom: 1rem;
}

.faq-answer ul {
    padding-left: 1.5rem;
}

.faq-item.active .faq-question {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 1000px;
}

.main-nav {
    display: flex;
    align-items: center;
}

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

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

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.disclaimer-section {
    padding: 4rem 0;
    background: var(--primary-color);
    color: var(--text-color);
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.disclaimer-content h3 {
    color: var(--orange-accent);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.2rem;
}

.disclaimer-content p {
    margin-bottom: 1rem;
}

.disclaimer-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.disclaimer-content li {
    margin-bottom: 0.5rem;
}

.community-section {
    padding: 4rem 0;
    background: var(--secondary-color);
    color: var(--light-text);
}

.community-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.community-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    transition: transform 0.3s, color 0.3s;
    width: 100px;
}

.community-link:hover {
    transform: translateY(-5px);
    color: var(--orange-accent);
}

.community-link i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.community-link span {
    font-size: 0.9rem;
    text-align: center;
}

footer {
    background: var(--primary-color);
    color: var(--text-color);
    padding: 4rem 0 2rem;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo-img {
    max-width: 180px;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 150px;
}

.footer-nav a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-subscribe {
    flex: 1;
    min-width: 250px;
}

.footer-subscribe h3 {
    margin-bottom: 1rem;
    color: var(--light-text);
}

.subscribe-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.subscribe-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    outline: none;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-subscribe {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    background: var(--orange-accent);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-subscribe:hover {
    background-color: #e5570a;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--primary-color);
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

    .community-link {
        width: 80px;
    }
}

.webapp-screenshot {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.webapp-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

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

@media (max-width: 768px) {
    .mobile-screenshots {
        grid-template-columns: 1fr;
    }
}

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

.platform-title {
    font-size: 1.8rem;
    color: var(--orange-accent);
    margin-bottom: 1rem;
    text-align: center;
}

.platform-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-color);
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 3rem auto;
    width: 80%;
}

/* Add this new CSS class for visually hidden elements */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
} 