/* Nexus Corporation - Corporate Website */
:root {
    --primary: #0a0a0a;
    --secondary: #1a1a2e;
    --accent: #00d4ff;
    --accent-dark: #0099cc;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --bg-dark: #050505;
    --bg-card: #111111;
    --gradient: linear-gradient(135deg, #00d4ff 0%, #0066ff 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(5, 5, 5, 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-mark {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

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

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

.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);
    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, #1a1a2e 0%, #050505 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="50" cy="50" r="1" fill="%2300d4ff" opacity="0.3"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 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: 4rem;
    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;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 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;
}

/* Solutions Section */
.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);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

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

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

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

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

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

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

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

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

.featured-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

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

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

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

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.news-card:hover {
    border-color: var(--accent);
}

.news-image {
    height: 200px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    opacity: 0.5;
}

.news-content {
    padding: 25px;
}

.news-date {
    color: var(--accent);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

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

/* 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;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .stats-grid,
    .solutions-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        display: none;
    }
}

/* ================================
   Satirical Ads - GTA Style
   ================================ */
.ad-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--accent);
    position: relative;
    margin: 2rem 0;
}

.ad-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.ad-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.ad-banner {
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ad-icon { font-size: 3rem; margin-bottom: 0.75rem; }

.ad-headline {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.ad-subhead {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    margin-bottom: 1rem;
}

.ad-cta {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ad-cta:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
    color: white;
}

.ad-disclaimer {
    padding: 1rem 1.5rem;
    background: rgba(0,0,0,0.05);
    font-size: 0.7rem;
    color: var(--text-light);
    line-height: 1.5;
    font-style: italic;
}

.sidebar-ad {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--accent);
    position: relative;
    margin-bottom: 1.5rem;
}

.sidebar-ad-label {
    background: var(--accent);
    color: white;
    padding: 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.sidebar-ad-content {
    padding: 1.25rem;
    text-align: center;
}

.sidebar-ad-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

.sidebar-ad-headline {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.sidebar-ad-text {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.sidebar-ad-tagline {
    font-size: 0.75rem;
    color: var(--primary);
    font-style: italic;
    margin-bottom: 1rem;
}

.sidebar-ad-cta {
    display: block;
    background: var(--primary);
    border: none;
    padding: 0.75rem;
    border-radius: 0.25rem;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.sidebar-ad-cta:hover {
    opacity: 0.9;
    transform: scale(1.02);
    color: white;
}

.sidebar-ad-disclaimer {
    padding: 0.75rem;
    background: rgba(0,0,0,0.03);
    font-size: 0.6rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Partner Ads */
.partners-section {
    background: #f8fafc;
}

.ad-card {
    position: relative;
    border: 2px solid #22d3ee !important;
}

.ad-card .ad-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #22d3ee;
    color: #0f172a;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.6rem;
    font-weight: 700;
}

.ad-card .ad-disclaimer {
    font-size: 0.7rem;
    color: #94a3b8;
    font-style: italic;
    margin-top: 0.75rem;
}

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

.footer-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: contain;
}
