:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3730a3;
    --accent-color: #f59e0b;
    --consciousness-blue: #0f172a;
    --neural-purple: #581c87;
    --ai-cyan: #06b6d4;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --research-bg: #f1f5f9;
    --highlight-glow: rgba(6, 182, 212, 0.2);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
}

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

/* Neural Network Background Animation */
.neural-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 20%, var(--ai-cyan) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, var(--accent-color) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, var(--neural-purple) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 120px 120px;
    animation: neural-pulse 8s ease-in-out infinite;
}

@keyframes neural-pulse {
    0%, 100% { opacity: 0.03; transform: scale(1); }
    50% { opacity: 0.08; transform: scale(1.05); }
}

header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ai-cyan), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

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

.nav-links a {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover {
    color: var(--ai-cyan);
    background: rgba(6, 182, 212, 0.1);
}

/* Hero Section - Research Lab Aesthetic */
.hero {
    background: linear-gradient(135deg, var(--consciousness-blue) 0%, var(--neural-purple) 100%);
    color: white;
    padding: 140px 0 100px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="neural" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="2" fill="rgba(6,182,212,0.3)"/><circle cx="75" cy="75" r="2" fill="rgba(245,158,11,0.3)"/><line x1="25" y1="25" x2="75" y2="75" stroke="rgba(6,182,212,0.2)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23neural)"/></svg>') repeat;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.breakthrough-badge {
    display: inline-block;
    background: rgba(6, 182, 212, 0.2);
    color: var(--ai-cyan);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 5px rgba(6, 182, 212, 0.3); }
    50% { box-shadow: 0 0 20px rgba(6, 182, 212, 0.6); }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, var(--ai-cyan) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .research-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
    color: #e2e8f0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ai-cyan);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--ai-cyan), var(--accent-color));
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
    margin-right: 1rem;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.4);
}

.cta-secondary {
    display: inline-block;
    color: var(--ai-cyan);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(6, 182, 212, 0.5);
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--ai-cyan);
}

/* Content Sections */
.content-section {
    background: white;
    margin: 0;
    position: relative;
    z-index: 1;
}

.section {
    padding: 100px 0;
}

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

.section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--consciousness-blue), var(--neural-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Research Breakthrough Section */
.research-breakthrough {
    background: var(--research-bg);
    padding: 4rem 0;
    margin: 4rem 0;
    border-left: 5px solid var(--ai-cyan);
}

.breakthrough-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.breakthrough-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--consciousness-blue);
    margin-bottom: 1.5rem;
    position: relative;
}

.breakthrough-title::before {
    content: '🧠';
    position: absolute;
    left: -3rem;
    top: 0;
    font-size: 2rem;
}

/* Services Grid - Academic Style */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: all 0.3s;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--ai-cyan), var(--accent-color));
    border-radius: 15px 15px 0 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    color: var(--consciousness-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Quote Section for Journalists */
.quote-section {
    background: linear-gradient(135deg, var(--neural-purple) 0%, var(--consciousness-blue) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin: 4rem 0;
}

.quote-text {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto 2rem;
    position: relative;
}

.quote-text::before,
.quote-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--ai-cyan);
    font-family: serif;
}

.quote-attribution {
    font-size: 1.1rem;
    opacity: 0.9;
    font-style: italic;
}

/* Contact Section */
.contact-hero {
    background: linear-gradient(135deg, var(--consciousness-blue) 0%, var(--neural-purple) 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.contact-form-container {
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    margin: -3rem auto 4rem;
    max-width: 800px;
    border: 1px solid rgba(6, 182, 212, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--consciousness-blue);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--ai-cyan);
    background: white;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--ai-cyan), var(--accent-color));
    color: white;
    padding: 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.4);
}

/* Footer */
.footer {
    background: var(--consciousness-blue);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    color: var(--ai-cyan);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--ai-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 2rem;
        margin: -2rem 1rem 2rem;
    }
    
    .quote-text {
        font-size: 1.5rem;
    }
}

/* Press-Ready Styling */
.press-highlight {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(245, 158, 11, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin: 2rem 0;
}

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

.methodology-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--ai-cyan);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.methodology-item h4 {
    color: var(--consciousness-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}