/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #f9fafb;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    min-height: 100vh;
}

/* Legal Disclaimer Banner */
.legal-disclaimer-banner {
    background: linear-gradient(90deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
}

/* Navigation */
.main-nav {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #374151;
    position: sticky;
    top: 44px;
    z-index: 999;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid #dc2626;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.logo a:hover {
    background: #dc2626;
    color: white;
}

.logo span {
    font-size: 20px;
    font-weight: 700;
    color: #f9fafb;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: #dc2626;
    border-bottom-color: #dc2626;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1f2937 0%, #111827 50%, #0f0f0f 100%);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid #374151;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 1.8rem;
    color: #d1d5db;
    margin-bottom: 40px;
    font-weight: 600;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.stat {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid #dc2626;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #dc2626;
    margin-bottom: 8px;
}

.stat .label {
    color: #d1d5db;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #9ca3af;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.manus-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #3b82f6;
    transition: all 0.3s ease;
}

.manus-link:hover {
    color: #60a5fa;
    border-bottom-color: #60a5fa;
}

/* Section Styles */
.section {
    padding: 80px 20px;
    border-bottom: 1px solid #374151;
}

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

.section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    color: #f9fafb;
}

.section-intro {
    font-size: 1.2rem;
    color: #d1d5db;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Summary Grid */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.summary-card {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 16px;
    padding: 30px;
    border-left: 5px solid;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.summary-card.critical {
    border-left-color: #dc2626;
}

.summary-card.financial {
    border-left-color: #059669;
}

.summary-card.constitutional {
    border-left-color: #7c3aed;
}

.summary-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f9fafb;
}

.summary-card ul {
    list-style: none;
}

.summary-card li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #d1d5db;
    line-height: 1.6;
}

.summary-card li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

/* Objections Section */
.objections-section {
    background: linear-gradient(135deg, #111827 0%, #0f0f0f 100%);
}

.objections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.objection-card {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #374151;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.objection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #dc2626;
}

.objection-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ef4444;
    padding-bottom: 15px;
    border-bottom: 1px solid #374151;
}

.refutation h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #10b981;
}

.refutation ul {
    list-style: none;
    margin-bottom: 20px;
}

.refutation li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #d1d5db;
    line-height: 1.6;
}

.refutation li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.evidence-link {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #374151;
}

.evidence-link a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.evidence-link a:hover {
    color: #60a5fa;
}

/* Evidence Matrix */
.evidence-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #374151;
    color: #d1d5db;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: #dc2626;
    background: #dc2626;
    color: white;
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.evidence-item {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 16px;
    padding: 25px;
    border-left: 5px solid;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.evidence-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.evidence-item.smoking-gun {
    border-left-color: #dc2626;
}

.evidence-item.financial {
    border-left-color: #059669;
}

.evidence-item.professional {
    border-left-color: #7c3aed;
}

.evidence-item.constitutional {
    border-left-color: #f59e0b;
}

.evidence-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f9fafb;
}

.evidence-content p {
    margin-bottom: 10px;
    color: #d1d5db;
    line-height: 1.6;
}

.evidence-content strong {
    color: #f9fafb;
}

.connections {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

.connection {
    display: inline-block;
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    margin: 5px 5px 5px 0;
    border: 1px solid #dc2626;
}

/* Timeline */
.timeline-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 55%;
    text-align: left;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: #dc2626;
    border: 4px solid #1f2937;
    border-radius: 50%;
    z-index: 2;
}

.timeline-item:nth-child(odd)::before {
    right: -35px;
}

.timeline-item:nth-child(even)::before {
    left: -35px;
}

.timeline-item.critical::before {
    background: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.timeline-date {
    font-size: 1.1rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 10px;
}

.timeline-content {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #374151;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #f9fafb;
}

.timeline-content p {
    margin-bottom: 10px;
    color: #d1d5db;
    line-height: 1.6;
}

.timeline-content strong {
    color: #f9fafb;
}

/* Constitutional Section */
.constitutional-section {
    background: linear-gradient(135deg, #111827 0%, #0f0f0f 100%);
}

.constitutional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.constitutional-card {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 16px;
    padding: 30px;
    border-left: 5px solid #7c3aed;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.constitutional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.constitutional-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #f9fafb;
}

.violation-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 20px 0 10px;
    color: #7c3aed;
}

.violation-details p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.violation-details ul {
    list-style: none;
    margin-bottom: 20px;
}

.violation-details li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #d1d5db;
    line-height: 1.6;
}

.violation-details li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #7c3aed;
    font-weight: bold;
}

.constitutional-remedy {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.constitutional-remedy h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.constitutional-remedy p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.constitutional-remedy ul {
    list-style: none;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.constitutional-remedy li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.constitutional-remedy li::before {
    content: "⚖️";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Document Archive */
.download-section {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 16px;
    border: 1px solid #374151;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.4);
}

.document-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.doc-category {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #374151;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.doc-category h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f9fafb;
}

.doc-category ul {
    list-style: none;
}

.doc-category li {
    margin-bottom: 10px;
}

.doc-category a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.doc-category a:hover {
    color: #60a5fa;
}

/* Manus AI Section */
.manus-section {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 50%, #2563eb 100%);
    color: white;
}

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

.manus-description h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.manus-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.manus-description ul {
    list-style: none;
}

.manus-description li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.manus-description li::before {
    content: "🤖";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.manus-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.manus-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.manus-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    color: #1e40af;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 20px 0;
}

.manus-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.manus-note {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 15px;
}

/* Footer */
.footer {
    background: #0f0f0f;
    border-top: 1px solid #374151;
    padding: 50px 20px 30px;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #f9fafb;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.footer-section a:hover {
    color: #60a5fa;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 40px !important;
        text-align: left !important;
    }
    
    .timeline-item::before {
        left: -35px !important;
    }
    
    .manus-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .objections-grid {
        grid-template-columns: 1fr;
    }
    
    .evidence-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .constitutional-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.8s ease-out;
}

/* Print Styles */
@media print {
    .legal-disclaimer-banner,
    .main-nav,
    .footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

