        /* ============================================
           CENTRIGON SECURITY TOOLS INDEX - COMPLETE STYLESHEET
           ============================================ */
        
        /* CSS Variables */
        :root {
            --deep-plum: #2d2a4e;
            --rich-gold: #e6b422;
            --soft-berry: #b76e6e;
            --pure-white: #ffffff;
            --slate-50: #f8fafc;
            --slate-100: #f1f5f9;
            --slate-200: #e2e8f0;
            --slate-300: #cbd5e1;
            --slate-400: #94a3b8;
            --slate-500: #64748b;
            --slate-600: #475569;
            --slate-700: #334155;
            --slate-800: #1e293b;
            --slate-900: #0f172a;
            --gradient-1: linear-gradient(135deg, #2d2a4e 0%, #4a3b6e 100%);
            --gradient-2: linear-gradient(135deg, #e6b422 0%, #f5b042 100%);
            --success: #10b981;
            --warning: #f59e0b;
            --error: #ef4444;
            --info: #3b82f6;
            --security-glow: 0 0 20px rgba(230, 180, 34, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
            background: linear-gradient(135deg, #faf9ff 0%, #f5f3ff 100%);
            color: var(--slate-800);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        
        /* Background Pattern */
        .bg-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232d2a4e' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            background-repeat: repeat;
        }
        
        /* Container */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* Navigation */
        .site-header {
            padding: 2rem 0 1rem 0;
            position: relative;
            z-index: 10;
        }
        
        .breadcrumb {
            margin-bottom: 2rem;
        }
        
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 0.5rem;
            font-size: 0.75rem;
        }
        
        .breadcrumb li:not(:last-child):after {
            content: "/";
            margin-left: 0.5rem;
            color: var(--slate-400);
        }
        
        .breadcrumb a {
            color: var(--slate-500);
            text-decoration: none;
            transition: color 0.15s ease;
        }
        
        .breadcrumb a:hover {
            color: var(--deep-plum);
        }
        
        .breadcrumb li[aria-current="page"] {
            color: var(--deep-plum);
            font-weight: 500;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .title-group {
            display: flex;
            align-items: baseline;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        
        .page-title {
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .page-sigil {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--rich-gold);
            background: rgba(230, 180, 34, 0.1);
            padding: 0.25rem 0.75rem;
            border-radius: 2rem;
        }
        
        .header-accent {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        
        .pill {
            font-size: 0.75rem;
            padding: 0.25rem 0.75rem;
            background: white;
            border-radius: 2rem;
            color: var(--slate-600);
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
        }
        
        .pill-highlight {
            background: var(--gradient-2);
            color: white;
        }
        
        /* Hero Section */
        .hero {
            padding: 1rem 0 3rem 0;
            position: relative;
            z-index: 10;
        }
        
        .hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(230, 180, 34, 0.1);
            color: var(--rich-gold);
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--slate-900) 0%, var(--deep-plum) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .hero-highlight {
            background: var(--gradient-2);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .hero-description {
            font-size: 1.125rem;
            color: var(--slate-600);
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        /* Stats Bar */
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }
        
        .stat-card {
            text-align: center;
            padding: 1rem 1.5rem;
            background: white;
            border-radius: 1rem;
            border: 1px solid var(--slate-200);
            min-width: 140px;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--deep-plum);
        }
        
        .stat-label {
            font-size: 0.75rem;
            color: var(--slate-500);
            margin-top: 0.25rem;
        }
        
        /* Tools Grid */
        .tools-section {
            padding: 2rem 0;
            position: relative;
            z-index: 10;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-eyebrow {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--rich-gold);
            font-weight: 600;
            margin-bottom: 0.75rem;
            display: inline-block;
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--slate-900);
            margin-bottom: 0.75rem;
        }
        
        .section-divider {
            width: 60px;
            height: 3px;
            background: var(--gradient-2);
            margin: 1rem auto 0;
            border-radius: 3px;
        }
        
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        /* Tool Card */
        .tool-card {
            background: white;
            border-radius: 1rem;
            padding: 1.75rem;
            transition: all 0.25s ease;
            border: 1px solid var(--slate-200);
            text-decoration: none;
            display: block;
            position: relative;
            overflow: hidden;
        }
        
        .tool-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-2);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .tool-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
            border-color: var(--slate-300);
        }
        
        .tool-card:hover::before {
            transform: scaleX(1);
        }
        
        .tool-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .tool-name {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--slate-900);
            margin-bottom: 0.5rem;
        }
        
        .tool-description {
            font-size: 0.875rem;
            color: var(--slate-600);
            line-height: 1.5;
            margin-bottom: 1rem;
        }
        
        .tool-meta {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }
        
        .tool-tag {
            font-size: 0.65rem;
            padding: 0.25rem 0.75rem;
            background: var(--slate-100);
            color: var(--slate-600);
            border-radius: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.02em;
        }
        
        .tool-tag.highlight {
            background: rgba(230, 180, 34, 0.1);
            color: var(--rich-gold);
        }
        
        /* Feature Section */
        .features-section {
            background: white;
            padding: 4rem 0;
            margin: 3rem 0;
            border-radius: 2rem;
            border: 1px solid var(--slate-200);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .feature-item {
            text-align: center;
            padding: 1rem;
        }
        
        .feature-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }
        
        .feature-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--slate-900);
            margin-bottom: 0.5rem;
        }
        
        .feature-desc {
            font-size: 0.75rem;
            color: var(--slate-500);
            line-height: 1.5;
        }
        
        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 3rem 0;
            background: var(--gradient-1);
            border-radius: 1.5rem;
            margin: 2rem 0;
        }
        
        .cta-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }
        
        .cta-description {
            color: rgba(255,255,255,0.8);
            margin-bottom: 1.5rem;
        }
        
        .cta-button {
            display: inline-block;
            background: white;
            color: var(--deep-plum);
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.15s ease;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        
        /* Footer */
        .site-footer {
            padding: 2rem 0;
            border-top: 1px solid var(--slate-200);
            margin-top: 2rem;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .footer-logo {
            font-size: 0.75rem;
            font-family: monospace;
            color: var(--slate-400);
        }
        
        .footer-links {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: var(--slate-500);
            text-decoration: none;
            font-size: 0.75rem;
            transition: color 0.15s ease;
        }
        
        .footer-links a:hover {
            color: var(--deep-plum);
        }
        
        .footer-legal {
            font-size: 0.7rem;
            color: var(--slate-400);
        }
        
        /* Security Badge */
        .security-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(16, 185, 129, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            margin-top: 1rem;
        }
        
        .security-badge span {
            font-size: 0.7rem;
            color: var(--success);
        }
        
        /* Responsive */
        @media (max-width: 900px) {
            .container {
                padding: 0 1rem;
            }
            .hero-title {
                font-size: 2rem;
            }
            .tools-grid {
                grid-template-columns: 1fr;
            }
            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 640px) {
            .page-title {
                font-size: 1.75rem;
            }
            .hero-title {
                font-size: 1.75rem;
            }
            .stats-bar {
                gap: 1rem;
            }
            .stat-card {
                padding: 0.75rem 1rem;
                min-width: 100px;
            }
            .stat-number {
                font-size: 1.5rem;
            }
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .tool-card {
            animation: fadeInUp 0.4s ease forwards;
        }
        
        .tool-card:nth-child(1) { animation-delay: 0.05s; }
        .tool-card:nth-child(2) { animation-delay: 0.1s; }
        .tool-card:nth-child(3) { animation-delay: 0.15s; }
        .tool-card:nth-child(4) { animation-delay: 0.2s; }

        .toolsSectionP {
            color: var(--slate-600); margin-top: 1rem;
        }

        .coming-soon-card {
            opacity: 0.7; cursor: default;
        }

        #toolsGridCustom {
            max-width: 800px;
        }

        .tool-card-custom {
            background: var(--slate-50);
        }