/* NexaGen Pharmaceuticals - Corporate Website */
:root {
    --primary: #0f172a;
    --secondary: #1e293b;
    --accent: #10b981;
    --accent-dark: #059669;
    --accent-light: #34d399;
    --text-light: #ffffff;
    --text-muted: #94a3b8;
    --bg-dark: #020617;
    --bg-card: #0f172a;
    --gradient: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-light);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--accent);
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--accent);
}

.nav-cta {
    background: var(--gradient) !important;
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: radial-gradient(ellipse at center, #0f2922 0%, #020617 70%);
    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"><circle cx="25" cy="25" r="1" fill="%2310b981" opacity="0.2"/><circle cx="75" cy="75" r="1" fill="%230ea5e9" opacity="0.2"/></svg>');
    background-size: 60px 60px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Stats Bar */
.stats-bar {
    background: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item .number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item .label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s;
}

.product-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.product-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-card .subtitle {
    color: var(--accent);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

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

/* Research Section */
.research {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f2922 50%, var(--bg-dark) 100%);
}

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

.research-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.research-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.research-list {
    list-style: none;
    margin: 30px 0;
}

.research-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-muted);
}

.research-list li::before {
    content: '🧬';
    position: absolute;
    left: 0;
}

.research-image {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.research-image .placeholder {
    font-size: 8rem;
    opacity: 0.5;
}

/* Pipeline Section */
.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pipeline-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.pipeline-card .phase {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.pipeline-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.pipeline-card .indication {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.pipeline-card.phase-1 { border-top: 3px solid #60a5fa; }
.pipeline-card.phase-2 { border-top: 3px solid #fbbf24; }
.pipeline-card.phase-3 { border-top: 3px solid #f97316; }
.pipeline-card.approved { border-top: 3px solid #10b981; }

/* CTA Section */
.cta-section {
    background: var(--gradient);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

/* Footer */
.site-footer {
    background: var(--primary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about .logo {
    margin-bottom: 15px;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent);
}

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    background: radial-gradient(ellipse at center, #0f2922 0%, #020617 70%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

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

/* Press Releases */
.press-releases {
    max-width: 800px;
    margin: 0 auto;
}

.press-release {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.press-release:hover {
    border-color: var(--accent);
}

.press-release.featured {
    border-left: 4px solid var(--accent);
}

.press-date {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.press-release h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.press-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.press-content p strong {
    color: var(--text-light);
}

.press-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 30px;
}

.press-footer p {
    font-size: 0.9rem;
}

.read-more {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Safety Hero */
.safety-hero {
    padding: 180px 0 100px;
    background: radial-gradient(ellipse at center, #0f2922 0%, #020617 70%);
    text-align: center;
}

.hero-content.centered {
    max-width: 800px;
    margin: 0 auto;
}

/* Safety Grid */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.safety-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s;
}

.safety-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.safety-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.safety-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

/* Info Box */
.serenix-info {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1a0f22 50%, var(--bg-dark) 100%);
}

.info-box {
    background: var(--bg-card);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.info-box h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #f59e0b;
}

.info-box p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.info-box p strong {
    color: var(--text-light);
}

.info-actions {
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.info-actions h4 {
    margin-bottom: 15px;
    color: var(--accent);
}

.info-actions ul {
    list-style: none;
}

.info-actions li {
    padding: 8px 0;
}

.info-actions a {
    color: var(--text-light);
    text-decoration: none;
}

.info-actions a:hover {
    color: var(--accent);
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Report Methods */
.report-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.report-content > p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.report-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.report-method {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 30px;
}

.report-method h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.report-method p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 5px 0;
}

.report-content a {
    color: var(--accent);
}

/* Product Featured */
.product-featured {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f2922 50%, var(--bg-dark) 100%);
}

.product-detail {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-content .product-category {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-content h2 {
    font-size: 3rem;
    margin: 10px 0;
}

.product-tagline {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 25px;
}

.product-content > p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.product-stats .stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.product-content h4 {
    margin-bottom: 15px;
}

.benefit-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefit-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-muted);
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.product-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.8;
}

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

.product-box {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    min-width: 280px;
}

.product-box.serenix {
    border-color: var(--accent);
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.2);
}

.product-pill {
    display: block;
    font-size: 4rem;
    margin-bottom: 20px;
}

.product-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.product-dose {
    color: var(--text-muted);
}

/* Detailed Product Cards */
.products-grid.detailed {
    grid-template-columns: repeat(2, 1fr);
}

.product-card.detailed {
    padding: 40px;
}

.product-card .product-category {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.product-indication {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-highlights {
    list-style: none;
    margin: 20px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.product-highlights li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.product-highlights li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.product-links {
    margin-top: 20px;
}

.product-links a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.product-links a:hover {
    text-decoration: underline;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cta-section .btn.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .stats-grid,
    .products-grid,
    .pipeline-grid,
    .safety-grid,
    .report-methods {
        grid-template-columns: 1fr;
    }
    
    .products-grid.detailed {
        grid-template-columns: 1fr;
    }
    
    .research-content,
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        display: none;
    }
    
    .product-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .product-actions,
    .cta-buttons {
        flex-direction: column;
    }
    
    .info-box {
        padding: 30px;
    }
    
    .press-release {
        padding: 25px;
    }
}
