﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.page-container {
    min-height: 100vh;
    background-color: #f9fafb;
}

/* Header */
.header {
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left h1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

.header-right {
    text-align: right;
}

.developed-by {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.company-link {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

    .company-link:hover {
        color: #1d4ed8;
    }

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #2563eb, #1e40af);
    color: white;
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

    .hero-content h2 {
        font-size: 2.25rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

.hero-description {
    font-size: 1.25rem;
    color: #dbeafe;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.75;
}

/* Content Container */
.content-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Purpose Section */
.purpose-section {
    padding: 3rem 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header h3,
    .section-title {
        font-size: 1.875rem;
        font-weight: 700;
        color: #111827;
        margin-bottom: 1rem;
    }

.section-description {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.75;
}

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.capability-card {
    background-color: #eff6ff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.capability-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.capability-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.capability-card p {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Dashboard Section */
.dashboard-section {
    padding: 3rem 0;
    background-color: #f9fafb;
}

.dashboard-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dashboard-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 2rem;
}

    .dashboard-card h4 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 1rem;
    }

.dashboard-embed {
    background-color: #f3f4f6;
    border-radius: 0.25rem;
    height: 24rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-text {
    color: #6b7280;
    font-size: 1.125rem;
}

/* Technology Section */
.tech-section {
    padding: 3rem 0;
    background-color: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.tech-item {
    padding: 1rem;
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.tech-name {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

.tech-desc {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 2rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left {
    margin-bottom: 1rem;
}

    .footer-left p {
        font-size: 0.875rem;
    }

    .footer-left a {
        color: white;
        text-decoration: none;
    }

        .footer-left a:hover {
            color: #93c5fd;
        }

.footer-right {
    font-size: 0.875rem;
    color: #9ca3af;
    text-align: right;
}

    .footer-right p {
        margin-bottom: 0.25rem;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .header-right {
        margin-top: 1rem;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        margin-top: 1rem;
        text-align: center;
    }
}
