@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* CSS styles for Neurocision landing page */
:root {
    --primary-color: #007bff;
    --text-color: #333;
    --background-color: #f4f4f4;
    --container-width: 960px;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

main {
    padding: 2rem 0;
}

.hero {
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits {
    padding: 4rem 0;
    background: #fff;
}

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

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

.benefit {
    text-align: center;
    padding: 1.5rem;
}

.benefit h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit p {
    font-size: 1rem;
    color: #666;
}

.target-users {
    padding: 4rem 0;
    text-align: center;
}

.target-users h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.target-users p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 1rem auto;
}

.pilot-results {
    font-style: italic;
    color: #666;
    font-size: 1rem !important;
}

.cta-section {
    padding: 4rem 0;
    background: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.email-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

.email-inline {
    color: var(--primary-color);
    font-weight: 600;
    background: #f0f8ff;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.demo-link {
    margin-top: 1rem;
    font-size: 1rem;
}

.demo-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.demo-link a:hover {
    text-decoration: underline;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.cta-button:hover {
    background-color: #0056b3;
}

footer {
    text-align: center;
    padding: 2rem 0;
    background: #fff;
    margin-top: 2rem;
}

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

footer a:hover {
    text-decoration: underline;
}

a {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .logo {
        font-size: 1.2rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .benefits h2, .target-users h2, .cta-section h2 {
        font-size: 1.5rem;
    }
} 