/* NeuroCollective — Dark Cyber-Academic Theme */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700&display=swap');

/* Base */
body {
    background-color: #050a18 !important;
    color: #c8d6e8 !important;
    font-family: 'Inter', sans-serif;
}

/* Header */
.site-header, .ast-header-wrap {
    background-color: #070d1f !important;
    border-bottom: 1px solid rgba(0, 200, 255, 0.15) !important;
}

.main-header-bar {
    background-color: #070d1f !important;
}

/* Logo / Site Title */
.site-title a,
.site-title a:visited,
.ast-site-title a,
.ast-site-title a:visited,
.site-branding .site-title a {
    color: #00c8ff !important;
    font-family: 'Satoshi', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.4rem !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    text-decoration: none !important;
}

/* Navigation */
.main-navigation a, .ast-nav-menu a {
    color: #a0b4cc !important;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.main-navigation a:hover, .ast-nav-menu a:hover {
    color: #00c8ff !important;
}

/* Hero Section */
.nc-hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    background: radial-gradient(ellipse at 50% 40%, rgba(0, 100, 180, 0.12) 0%, transparent 70%);
}

.nc-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.nc-hero h1 span {
    color: #00c8ff;
}

.nc-hero p.lead {
    font-size: 1.2rem;
    color: #8aa0b8;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.nc-cta-btn {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    border: 1px solid #00c8ff;
    color: #00c8ff !important;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.3s ease;
    margin: 0 10px 10px;
}

.nc-cta-btn:hover {
    background: rgba(0, 200, 255, 0.12);
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.25);
}

.nc-cta-btn.solid {
    background: #00c8ff;
    color: #050a18 !important;
}

.nc-cta-btn.solid:hover {
    background: #33d4ff;
}

/* Graph demo container */
#nc-graph-demo {
    width: 100%;
    max-width: 800px;
    height: 380px;
    margin: 60px auto 0;
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 8px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Section titles */
.nc-section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.nc-section-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #00c8ff;
    margin-bottom: 12px;
    font-weight: 600;
}

.nc-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.nc-section p {
    color: #8aa0b8;
    line-height: 1.8;
    max-width: 680px;
}

/* Research project cards */
.nc-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.nc-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0, 200, 255, 0.12);
    border-radius: 8px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.nc-card:hover {
    border-color: rgba(0, 200, 255, 0.4);
    background: rgba(0, 200, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 200, 255, 0.1);
}

.nc-card-status {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #00c8ff;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.25);
    border-radius: 20px;
    padding: 3px 12px;
    margin-bottom: 16px;
}

.nc-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e0ecf8;
    margin-bottom: 12px;
    line-height: 1.3;
}

.nc-card p {
    font-size: 0.9rem;
    color: #6a85a0;
    line-height: 1.7;
}

/* Architecture diagram section */
.nc-arch {
    background: rgba(0, 20, 50, 0.4);
    border: 1px solid rgba(0, 200, 255, 0.1);
    border-radius: 12px;
    padding: 48px;
    margin-top: 48px;
    text-align: center;
}

.nc-arch-layers {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 32px;
}

.nc-layer {
    width: 100%;
    max-width: 500px;
    padding: 16px 24px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nc-layer.l1 { background: rgba(0, 200, 255, 0.15); border: 1px solid rgba(0, 200, 255, 0.4); color: #00c8ff; }
.nc-layer.l2 { background: rgba(120, 80, 255, 0.12); border: 1px solid rgba(120, 80, 255, 0.35); color: #a080ff; margin-top: 4px; }
.nc-layer.l3 { background: rgba(200, 80, 255, 0.1); border: 1px solid rgba(200, 80, 255, 0.3); color: #d080ff; margin-top: 4px; }

.nc-layer-arrow {
    color: rgba(0,200,255,0.4);
    font-size: 1.4rem;
    line-height: 1;
    margin: 6px 0;
}

/* Contact form section */
.nc-contact {
    background: rgba(0, 20, 50, 0.4);
    border: 1px solid rgba(0, 200, 255, 0.1);
    border-radius: 12px;
    padding: 48px;
    margin-top: 48px;
}

/* Divider */
.nc-divider {
    border: none;
    border-top: 1px solid rgba(0, 200, 255, 0.08);
    margin: 0;
}

/* Footer */
.site-footer, .ast-footer-wrap {
    background-color: #070d1f !important;
    border-top: 1px solid rgba(0, 200, 255, 0.1);
    color: #4a6070 !important;
    font-size: 0.85rem;
}

.site-footer a {
    color: #4a8090 !important;
}

/* WPForms dark */
.wpforms-form input[type=text],
.wpforms-form input[type=email],
.wpforms-form textarea {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(0,200,255,0.2) !important;
    color: #c8d6e8 !important;
    border-radius: 4px;
}

.wpforms-form input[type=text]:focus,
.wpforms-form input[type=email]:focus,
.wpforms-form textarea:focus {
    border-color: rgba(0,200,255,0.5) !important;
    outline: none !important;
    box-shadow: 0 0 10px rgba(0,200,255,0.1) !important;
}

.wpforms-submit {
    background: transparent !important;
    border: 1px solid #00c8ff !important;
    color: #00c8ff !important;
    border-radius: 4px !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
}

.wpforms-submit:hover {
    background: rgba(0,200,255,0.12) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .nc-arch { padding: 28px 20px; }
    .nc-contact { padding: 28px 20px; }
    #nc-graph-demo { height: 280px; }
}

/* List styles */
.entry-content ul,
.nc-section ul {
    list-style: disc !important;
    padding-left: 1.5em !important;
    margin: 0 !important;
}

.entry-content ul li,
.nc-section ul li {
    display: list-item !important;
    list-style: disc !important;
    color: #8aa0b8;
    line-height: 2;
}
