/* JGA Ventures - Shared Styles */

:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #3B82F6;
    --text: #1E293B;
    --text-secondary: #64748B;
    --background: #F8FAFC;
    --surface: #FFFFFF;
    --border: #E2E8F0;
    --accent: #10B981;
    --accent-light: #D1FAE5;
    --teal: #0D9488;
}

@media (prefers-color-scheme: dark) {
    :root {
        --primary: #3B82F6;
        --primary-dark: #2563EB;
        --primary-light: #60A5FA;
        --text: #F1F5F9;
        --text-secondary: #94A3B8;
        --background: #0F172A;
        --surface: #1E293B;
        --border: #334155;
        --accent: #34D399;
        --accent-light: #064E3B;
        --teal: #2DD4BF;
    }
}

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

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

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== Header ==================== */
header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 16px;
    font-size: 0.95rem;
    transition: color 0.2s;
    border-radius: 6px;
}

nav a:hover {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.hero-image img {
    max-width: 280px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==================== Section Base ==================== */
section {
    padding: 80px 0;
}

section.bordered {
    border-top: 1px solid var(--border);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== About Section ==================== */
.about-content {
    background: var(--surface);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* ==================== Product Section ==================== */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-info {
    order: 1;
}

.product-screenshots {
    order: 2;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.product-screenshots img {
    max-width: 200px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
}

.product-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.product-info h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.product-info > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

/* ==================== Features List ==================== */
.features-list {
    list-style: none;
    margin-bottom: 32px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.features-list li:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--accent);
}

/* ==================== Security Section ==================== */
.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.security-card {
    background: var(--surface);
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.security-card h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.security-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.security-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

/* ==================== Founder Section ==================== */
.founder-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    background: var(--surface);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.founder-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--border);
}

.founder-info h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.founder-title {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 16px;
}

.founder-bio {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.founder-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.founder-links a:hover {
    opacity: 0.8;
}

.linkedin-icon {
    width: 20px;
    height: 20px;
}

/* ==================== Testimonial ==================== */
.testimonial {
    background: var(--surface);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ==================== Coming Soon ==================== */
.coming-soon {
    text-align: center;
    padding: 40px 0;
}

.coming-soon p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==================== Footer ==================== */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 16px;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-contact a {
    color: var(--primary);
    text-decoration: none;
}

.footer-disclaimer {
    color: var(--text-secondary);
    font-size: 0.8rem;
    max-width: 600px;
    margin: 0 auto 16px;
    line-height: 1.5;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ==================== Support Page ==================== */
.page-header {
    text-align: center;
    padding: 60px 0 40px;
}

.page-header h1 {
    font-size: 2.25rem;
    margin-bottom: 8px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.support-section {
    background: var(--surface);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.support-section h2 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text);
}

.support-section p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.support-section p:last-child {
    margin-bottom: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-question {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.faq-answer {
    color: var(--text-secondary);
}

.faq-answer a {
    color: var(--primary);
}

/* ==================== 404 Page ==================== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.error-page h1 {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.error-page h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.error-page p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ==================== Responsive ==================== */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        order: -1;
    }

    .btn-group {
        justify-content: center;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-info {
        order: 2;
        text-align: center;
    }

    .product-screenshots {
        order: 1;
    }

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

    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-photo {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image img {
        max-width: 220px;
    }

    section {
        padding: 60px 0;
    }

    .header-content {
        flex-direction: column;
        gap: 16px;
    }

    nav {
        gap: 4px;
    }

    nav a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .product-screenshots img {
        max-width: 140px;
    }

    .founder-content {
        padding: 24px;
    }

    .founder-photo {
        width: 120px;
        height: 120px;
    }

    .about-content,
    .testimonial {
        padding: 24px;
    }

    .support-section {
        padding: 24px;
    }
}
