:root {
    --primary-color: #6366f1;
    --text-color: #1a1a1a;
    --background-color: #ffffff;
    --secondary-background: #f8f9fa;
    --border-color: #e5e7eb;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    gap: 0.5rem;
}

.logo img {
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
}

.hero-image {
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.primary-button, .secondary-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.secondary-button {
    background-color: #f3f4f6;
    color: var(--text-color);
}

.screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image .screenshot {
    border-right: 15px solid white;
    border-bottom: 15px solid white;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--secondary-background);
}

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

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.features-showcase {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.feature-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Download Section */
.download {
    padding: 80px 0;
    text-align: center;
}

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

.demo-cta {
    margin-bottom: 4rem;
}

.demo-note {
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.download h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

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

.platform-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    margin: 0.5rem;
    border-radius: 8px;
    background-color: #f5f5f5;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    min-width: 160px;
}

.platform-button:not(.disabled):hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.platform-button.disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.coming-soon {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

.platform-button:hover {
    background: #e5e7eb;
}

/* Support Page Styles */
.support-section {
    padding: 80px 0;
}

.support-section h1 {
    font-size: 2.5em;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 40px 0;
    text-align: center;
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.support-content h1 {
    margin-bottom: 30px;
    text-align: center;
}

.support-content h2 {
    margin: 30px 0 15px;
    font-size: 1.5em;
}

.contact-info, .support-hours {
    margin: 30px 0;
}

.support-email {
    display: inline-block;
    margin: 15px 0;
    padding: 12px 24px;
    background: #f5f5f5;
    border-radius: 6px;
    color: #007AFF;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.support-email:hover {
    background: #e5e5e5;
}

/* Legal Content Styles */
.legal-content {
    padding: 6rem 0 4rem;
    min-height: calc(100vh - 160px);
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-content .effective-date {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.legal-content section {
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.6;
    color: var(--text-color);
}

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

.legal-content strong {
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--secondary-background);
    padding: 40px 0;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo img {
    border-radius: 8px;
}

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

.footer-links a {
    text-decoration: none;
    color: #666;
}

.copyright {
    text-align: center;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .platform-links {
        flex-direction: column;
    }

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

/* Animations and Transitions */
.primary-button:hover {
    transform: translateY(-2px);
    background-color: #4f46e5;
}

.secondary-button:hover {
    background-color: #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
