:root {
            --bg-primary: #0a0a0c;
            --bg-secondary: #111116;
            --bg-card: #16161c;
            --bg-highlight: #1c1c24;
            --text-primary: #e8e6e3;
            --text-secondary: #9a9a9a;
            --text-muted: #666;
            --accent-red: #c43b3b;
            --accent-red-dim: #8b2a2a;
            --accent-gold: #c9a84c;
            --accent-gold-dim: #8a7234;
            --accent-blue: #4a7ab5;
            --border-subtle: #222230;
            --border-accent: #2a2a38;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Source Sans 3', Georgia, serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            font-size: 17px;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(ellipse at 50% 30%, rgba(196, 59, 59, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-badge {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--accent-red);
            border: 1px solid var(--accent-red-dim);
            padding: 0.4rem 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0;
            animation: fadeIn 1s 0.3s forwards;
        }
        .hero-subtitle {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            color: var(--text-muted);
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeIn 1s 0.5s forwards;
        }
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.15;
            max-width: 800px;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeIn 1s 0.7s forwards;
        }
        .hero h1 em { font-style: italic; color: var(--accent-red); }
        .hero-lead {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 600px;
            line-height: 1.8;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeIn 1s 1s forwards;
        }
        .hero-meta {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
            color: var(--text-muted);
            letter-spacing: 0.1em;
            opacity: 0;
            animation: fadeIn 1s 1.2s forwards;
        }
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            color: var(--text-muted);
            text-transform: uppercase;
            opacity: 0;
            animation: fadeIn 1s 1.5s forwards, pulse 2s 2s infinite;
        }

        .nav-sticky {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 10, 12, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-subtle);
            padding: 0.8rem 2rem;
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.72rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .nav-sticky a {
            color: var(--text-muted);
            text-decoration: none;
            white-space: nowrap;
            transition: color 0.3s;
        }
        .nav-sticky a:hover { color: var(--accent-red); }

        .content { max-width: 780px; margin: 0 auto; padding: 0 2rem; }
        section { padding: 5rem 0; }
        .section-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.7rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--accent-red-dim);
            margin-bottom: 0.8rem;
        }
        h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }
        h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 700;
            margin: 2.5rem 0 1rem;
            color: var(--text-primary);
        }
        p { margin-bottom: 1.2rem; color: var(--text-secondary); }
        p strong { color: var(--text-primary); font-weight: 600; }

        blockquote {
            border-left: 3px solid var(--accent-red-dim);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            background: var(--bg-secondary);
            font-style: italic;
            color: var(--text-secondary);
        }
        blockquote strong { color: var(--accent-gold); font-style: normal; }

        .timeline { position: relative; padding-left: 2rem; margin: 2rem 0; }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--accent-red-dim), var(--border-subtle));
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
            padding-left: 1.5rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.35rem;
            top: 0.4rem;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--accent-red-dim);
            border: 2px solid var(--bg-primary);
        }
        .timeline-item.critical::before {
            background: var(--accent-red);
            box-shadow: 0 0 8px rgba(196, 59, 59, 0.4);
        }
        .timeline-date {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.78rem;
            color: var(--accent-gold-dim);
            letter-spacing: 0.05em;
            margin-bottom: 0.3rem;
        }
        .timeline-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--text-primary);
            margin-bottom: 0.4rem;
        }
        .timeline-text { font-size: 0.95rem; color: var(--text-secondary); margin: 0; }

        .evidence-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            padding: 1.5rem 2rem;
            margin: 1.5rem 0;
            border-left: 3px solid var(--accent-red-dim);
        }
        .evidence-card.gold-card { border-left-color: var(--accent-gold-dim); }
        .evidence-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.68rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent-red);
            margin-bottom: 0.5rem;
        }
        .evidence-card.gold-card .evidence-label { color: var(--accent-gold); }

        .compare-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.92rem;
        }
        .compare-table th {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.72rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-muted);
            text-align: left;
            padding: 0.8rem 1rem;
            border-bottom: 2px solid var(--border-accent);
        }
        .compare-table td {
            padding: 0.8rem 1rem;
            border-bottom: 1px solid var(--border-subtle);
            color: var(--text-secondary);
            vertical-align: top;
        }
        .compare-table td:first-child { color: var(--text-primary); font-weight: 600; }

        .callout {
            background: linear-gradient(135deg, rgba(196, 59, 59, 0.08), rgba(196, 59, 59, 0.02));
            border: 1px solid rgba(196, 59, 59, 0.15);
            padding: 2rem;
            margin: 2rem 0;
            text-align: center;
        }
        .callout p { color: var(--text-primary); font-size: 1.1rem; margin: 0; }
        .callout strong { color: var(--accent-red); }
        .callout-warm {
            background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02));
            border: 1px solid rgba(201, 168, 76, 0.15);
        }

        .verdict {
            background: var(--bg-card);
            border: 1px solid var(--accent-red-dim);
            padding: 2.5rem;
            margin: 3rem 0;
            text-align: center;
        }
        .verdict h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: var(--accent-red);
            margin: 0 0 1rem;
        }
        .verdict p { color: var(--text-secondary); max-width: 550px; margin: 0 auto; }

        .pattern-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1px;
            background: var(--border-subtle);
            margin: 2rem 0;
        }
        .pattern-cell {
            background: var(--bg-card);
            padding: 1.5rem;
            text-align: center;
        }
        .pattern-name {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
        }
        .pattern-status {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 700;
        }
        .pattern-status.fail { color: var(--accent-red); }
        .pattern-detail {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-top: 0.3rem;
        }

        .wa-log {
            background: var(--bg-secondary);
            border: 1px solid var(--border-subtle);
            padding: 1.5rem;
            margin: 1.5rem 0;
            font-family: 'Source Sans 3', sans-serif;
            font-size: 0.92rem;
        }
        .wa-msg {
            margin-bottom: 1rem;
            padding: 0.6rem 1rem;
            border-radius: 6px;
            max-width: 85%;
        }
        .wa-msg.sent {
            background: #1a3a2a;
            margin-left: auto;
            border-bottom-right-radius: 2px;
        }
        .wa-msg.received {
            background: var(--bg-highlight);
            border-bottom-left-radius: 2px;
        }
        .wa-msg .wa-time {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.65rem;
            color: var(--text-muted);
            display: block;
            margin-top: 0.3rem;
        }
        .wa-msg p { margin: 0; color: var(--text-primary); font-size: 0.9rem; }

        .sep {
            height: 1px;
            background: linear-gradient(to right, transparent, var(--border-accent), transparent);
            margin: 4rem 0;
        }

        .footer {
            text-align: center;
            padding: 4rem 2rem;
            border-top: 1px solid var(--border-subtle);
        }
        .footer p {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.72rem;
            color: var(--text-muted);
            letter-spacing: 0.1em;
        }
        .footer a { color: var(--accent-red-dim); text-decoration: none; }
        .footer a:hover { color: var(--accent-red); }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes pulse {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 0.8; }
        }
        @media (max-width: 640px) {
            .pattern-grid { grid-template-columns: 1fr; }
            .nav-sticky { padding: 0.6rem 1rem; gap: 1rem; }
            section { padding: 3rem 0; }
            .content { padding: 0 1.2rem; }
        }