
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-navy: #0c1221;
            --primary-blue: #2563eb;
            --secondary-blue: #3b82f6;
            --accent-cyan: #06b6d4;
            --accent-green: #10b981;
            --accent-orange: #f59e0b;
            --accent-red: #ef4444;
            --accent-purple: #8b5cf6;
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --text-muted: #64748b;
            --text-light: #94a3b8;
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-tertiary: #f1f5f9;
            --border-primary: #e2e8f0;
            --border-secondary: #cbd5e1;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-blue: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
            --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
            --gradient-warning: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            --gradient-danger: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        }
        
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        
        
        /* Hero Section */
        .hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1e293b 100%);
    color: white;
    padding: 3rem 3rem;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.5;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .hero-text h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 0.5rem;
            line-height: 1.1;
color: #FFFFFF;
        }
        
        .hero-subtitle {
            font-size: 1.125rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
            font-weight: 400;
        }
        
        .hero-tags {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }
        
        .tag {
            padding: 0.375rem 0.875rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .hero-score {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 1.5rem;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
        }
        
        .score-number {
            font-size: 3rem;
line-height: 3.1rem;
            font-weight: 900;
            font-family: 'JetBrains Mono', monospace;
            background: var(--gradient-success);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .score-label {
            font-size: 1rem;
            font-weight: 600;
            opacity: 0.9;
            margin-bottom: 0.25rem;
        }
        
        .score-status {
            font-size: 1rem;
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Main Content */
        .main-content {
            padding: 3rem 0;
        }
        
        .section {
            margin-bottom: 3rem;
        }
        
        .section-header {
            margin-bottom: 2rem;
        }
        
        .section-title {
            font-size: 1.95rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }
        
        .section-subtitle {
            color: var(--text-secondary);
            font-size: 1rem;
            font-weight: 400;
        }
        
        /* Card System */
        .card {
            background: var(--bg-primary);
            border-radius: 1rem;
            border: 1px solid var(--border-primary);
            box-shadow: var(--shadow-sm);
            transition: all 0.2s ease;
            overflow: hidden;
        }
        
        .card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }
        
        .card-header {
            padding: 1.5rem;
            border-bottom: 1px solid var(--border-primary);
        }
        
        .card-body {
            padding: 1.5rem;
        }
        
        .card-compact .card-body {
            padding: 1rem;
        }
        
        /* Executive Summary */
        .executive-card {
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            border: 1px solid var(--border-primary);
            border-radius: 1rem;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .executive-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-blue);
        }
        
        .executive-content h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }
        
        .executive-content p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
            border-left: 3px solid var(--primary-blue);
            padding: 1rem;
            border-radius: 0.5rem;
            margin: 1.5rem 0;
        }
        
        .highlight-box strong {
            color: var(--primary-blue);
        }
        
        /* Metrics Grid */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        
        .metric-card {
            background: var(--bg-primary);
            border: 1px solid var(--border-primary);
            border-radius: 0.75rem;
            padding: 1.5rem 1rem;
            text-align: center;
            transition: all 0.2s ease;
        }
        
        .metric-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        
        .metric-number {
            font-size: 1.75rem;
            font-weight: 800;
            font-family: 'JetBrains Mono', monospace;
            color: var(--primary-blue);
            display: block;
            margin-bottom: 0.25rem;
        }
        
        .metric-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Pillar Grid */
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.25rem;
        }
        
        .pillar-card {
            background: var(--bg-primary);
            border-radius: 1rem;
            border: 1px solid var(--border-primary);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .pillar-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-blue);
        }
        
        .pillar-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        
        .pillar-header {
            padding: 1.25rem;
            background: rgba(37, 99, 235, 0.02);
        }
        
        .pillar-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.75rem;
        }
        
        .pillar-title-group {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .pillar-icon {
            font-size: 1.5rem;
        }
        
        .pillar-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--text-primary);
        }
        
        .pillar-score {
            font-size: 1.5rem;
            font-weight: 800;
            font-family: 'JetBrains Mono', monospace;
            background: var(--gradient-blue);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .pillar-subtitle {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .pillar-body {
            padding: 1.25rem;
        }
        
        .component-section {
            margin-bottom: 1.25rem;
        }
        
        .component-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }
        
        .component-list {
            list-style: none;
        }
        
        .component-list li {
            font-size: 1rem;
            color: var(--text-secondary);
            padding: 0.25rem 0;
            position: relative;
            padding-left: 1rem;
            line-height: 1.4;
        }
        
        .component-list li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-weight: 600;
            font-size: 0.75rem;
        }
        
        .insight-box {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 0.5rem;
            padding: 0.875rem;
            margin-top: 1rem;
        }
        
        .insight-box p {
            font-size: 1rem;
            color: var(--text-primary);
            margin: 0;
            font-weight: 500;
        }
        
        .gap-box {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
            border: 1px solid rgba(239, 68, 68, 0.2);
            border-radius: 0.5rem;
            padding: 0.875rem;
            margin-top: 0.75rem;
        }
        
        .gap-box p {
            font-size: 1rem;
            color: var(--text-primary);
            margin: 0;
            font-weight: 500;
        }
        
        /* CSE Calculation */
        .cse-card {
            background: var(--bg-primary);
            border-radius: 1rem;
            padding: 2rem;
            border: 1px solid var(--border-primary);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cse-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-success);
        }
        
        .formula-box {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1rem;
            background: var(--bg-tertiary);
            padding: 1rem;
            border-radius: 0.5rem;
            margin: 1.5rem 0;
            border: 1px solid var(--border-secondary);
            font-weight: 600;
        }
        
        .score-bands {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 0.75rem;
            margin-top: 1.5rem;
        }
        
        .score-band {
            padding: 0.75rem 0.5rem;
            border-radius: 0.5rem;
            text-align: center;
            font-size: 0.75rem;
            font-weight: 600;
            border: 2px solid transparent;
        }
        
        .band-foundation {
            background: rgba(239, 68, 68, 0.1);
            color: var(--accent-red);
            border-color: rgba(239, 68, 68, 0.2);
        }
        
        .band-ready {
            background: rgba(245, 158, 11, 0.1);
            color: var(--accent-orange);
            border-color: rgba(245, 158, 11, 0.2);
        }
        
        .band-growth {
            background: rgba(37, 99, 235, 0.1);
            color: var(--primary-blue);
            border-color: rgba(37, 99, 235, 0.2);
        }
        
        .band-leadership {
            background: rgba(16, 185, 129, 0.1);
            color: var(--accent-green);
            border-color: var(--accent-green);
            border-width: 2px;
            border-style: solid;
        }
        
        .band-legacy {
            background: rgba(139, 92, 246, 0.1);
            color: var(--accent-purple);
            border-color: rgba(139, 92, 246, 0.2);
        }
        
        /* Two Column Layout */
        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        
        .risk-card {
            background: var(--bg-primary);
            border-radius: 1rem;
            padding: 1.5rem;
            border-left: 3px solid var(--accent-red);
            border-top: 1px solid var(--border-primary);
            border-right: 1px solid var(--border-primary);
            border-bottom: 1px solid var(--border-primary);
        }
        
        .opportunity-card {
            background: var(--bg-primary);
            border-radius: 1rem;
            padding: 1.5rem;
            border-left: 3px solid var(--accent-green);
            border-top: 1px solid var(--border-primary);
            border-right: 1px solid var(--border-primary);
            border-bottom: 1px solid var(--border-primary);
        }
        
        .card-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .risk-card .card-title {
            color: var(--accent-red);
        }
        
        .opportunity-card .card-title {
            color: var(--accent-green);
        }
        
        /* Strategic Moves */
        .moves-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.25rem;
        }
        
        .move-card {
            background: var(--bg-primary);
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid var(--border-primary);
            transition: all 0.3s ease;
        }
        
        .move-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }
        
        .move-header {
            background: var(--gradient-blue);
            color: white;
            padding: 1.25rem;
            position: relative;
        }
        
        .move-number {
            position: absolute;
            top: 10px;
            right: 1.25rem;
            background: rgba(255, 255, 255, 0.2);
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.875rem;
        }
        
        .move-title {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .move-subtitle {
            font-size: 0.875rem;
            opacity: 0.9;
        }
        
        .move-body {
            padding: 1.25rem;
        }
        
        .move-section {
            margin-bottom: 1rem;
        }
        
        .move-section h5 {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }
        
        .move-list {
            list-style: none;
            margin-bottom: 1rem;
        }
        
        .move-list li {
            font-size: 1rem;
            color: var(--text-secondary);
            padding: 0.25rem 0;
            position: relative;
            padding-left: 1rem;
            line-height: 1.4;
        }
        
        .move-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-green);
            font-weight: 600;
        }
        
        .roi-box {
            background: rgba(16, 185, 129, 0.05);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 0.5rem;
            padding: 0.875rem;
        }
        
        .roi-box strong {
            color: var(--accent-green);
            font-size: 1rem;
        }
        
        /* Table */
        .table-card {
            background: var(--bg-primary);
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid var(--border-primary);
            box-shadow: var(--shadow-sm);
        }
        
        .table-responsive {
            overflow-x: auto;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        th {
            background: var(--gradient-blue);
            color: white;
            padding: 0.875rem 0.75rem;
            text-align: left;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        td {
            padding: 0.75rem;
            border-bottom: 1px solid var(--border-primary);
            font-size: 1rem;
            color: var(--text-secondary);
        }
        
        tr:nth-child(even) {
            background: rgba(248, 250, 252, 0.5);
        }
        
        .highlight-row {
            background: rgba(16, 185, 129, 0.05) !important;
        }
        
        .highlight-row td {
            color: var(--accent-green);
            font-weight: 600;
        }
        
        /* Projections */
        .projection-card {
            background: var(--bg-primary);
            border-radius: 1rem;
            padding: 1.25rem;
            border: 1px solid var(--border-primary);
            position: relative;
            transition: all 0.2s ease;
        }
        
        .projection-card:hover {
            box-shadow: var(--shadow-md);
        }
        
        .projection-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .projection-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
        }
        
        .probability-badge {
            background: var(--gradient-blue);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .timeline-list {
            list-style: none;
            margin-bottom: 1rem;
        }
        
        .timeline-list li {
            font-size: 1rem;
            color: var(--text-secondary);
            padding: 0.25rem 0;
            position: relative;
            padding-left: 3rem;
        }
        
        .timeline-list li strong {
            position: absolute;
            left: 0;
            color: var(--text-primary);
            font-weight: 600;
            width: 2.5rem;
        }
        
        .outcome-box {
            background: rgba(37, 99, 235, 0.05);
            border: 1px solid rgba(37, 99, 235, 0.2);
            border-radius: 0.5rem;
            padding: 0.875rem;
        }
        
        .outcome-box strong {
            color: var(--primary-blue);
            font-size: 1rem;
        }
        
        /* Bottom Line */
        .bottom-line {
            background: linear-gradient(135deg, var(--primary-navy) 0%, #1e293b 100%);
            color: white;
            padding: 3rem 0;
            margin-top: 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .bottom-line::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid2" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid2)"/></svg>');
        }
        
        .bottom-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .bottom-content h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
color: #FFFFFF;
        }
        
        .bottom-content p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            opacity: 0.9;
        }
        
        .final-score-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 1rem;
            padding: 2rem;
            margin: 2rem auto;
            border: 1px solid rgba(255, 255, 255, 0.2);
            max-width: 400px;
        }
        
        .final-score-number {
            font-size: 3rem;
line-height: 3.1rem;
            font-weight: 900;
            font-family: 'JetBrains Mono', monospace;
            background: var(--gradient-success);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .final-score-label {
            font-size: 0.875rem;
            opacity: 0.8;
            margin-bottom: 0.5rem;
        }
        
        .final-score-tagline {
            font-size: 0.75rem;
            opacity: 0.7;
            font-style: italic;
        }
        
        /* CTA */
        .cta-card {
            background: var(--bg-primary);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            border: 1px solid var(--border-primary);
            margin: 2rem 0;
        }
        
        .cta-button {
            background: var(--gradient-blue);
            color: white;
            padding: 0.875rem 2rem;
            border-radius: 2rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            
            .pillars-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .two-column {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }
            
            .hero {
                padding: 2rem 0;
            }
            
            .main-content {
                padding: 2rem 0;
            }
            
            .pillars-grid {
                grid-template-columns: 1fr;
            }
            
            .moves-grid {
                grid-template-columns: 1fr;
            }
            
            .metrics-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
            
            .score-bands {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            }
            
            .table-responsive {
                font-size: 0.8125rem;
            }
        }