        /* ============================================
           CENTRIGON ABOUT PAGE - COMPLETE STYLESHEET
           ============================================ */
        
        :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, #0f172a 0%, #1e293b 100%);
            --gradient-2: linear-gradient(135deg, #e6b422 0%, #f5b042 100%);
            --gradient-warm: linear-gradient(135deg, #fef9e6 0%, #fff5e0 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
            background: var(--pure-white);
            color: var(--slate-800);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--slate-200);
            z-index: 100;
            padding: 0.875rem 0;
        }
        
        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .logo {
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            text-decoration: none;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo-icon {
            display: inline-block;
            width: 28px;
            height: 28px;
            background: var(--gradient-2);
            border-radius: 8px;
            position: relative;
        }
        
        .logo-icon::after {
            content: "⚡";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 14px;
            color: var(--slate-900);
        }
        
        .nav-links {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .nav-links a {
            color: var(--slate-600);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            transition: color 0.15s ease;
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--rich-gold);
        }
        
        /* Hero Section */
        .hero {
            padding: 4rem 0 2rem;
            background: var(--gradient-warm);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 80% 20%, rgba(230, 180, 34, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        
        .hero-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(230, 180, 34, 0.15);
            color: var(--rich-gold);
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.3rem 0.9rem;
            border-radius: 2rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .hero h1 {
            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 p {
            font-size: 1.125rem;
            color: var(--slate-600);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Story Section */
        .story-section {
            padding: 4rem 0;
        }
        
        .story-block {
            margin-bottom: 3rem;
        }
        
        .story-year {
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--rich-gold);
            margin-bottom: 1rem;
        }
        
        .story-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--slate-900);
            margin-bottom: 1rem;
        }
        
        .story-text {
            color: var(--slate-600);
            line-height: 1.7;
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        
        .story-text:last-child {
            margin-bottom: 0;
        }
        
        .story-quote {
            background: var(--slate-50);
            border-left: 4px solid var(--rich-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0.75rem;
            font-style: italic;
            color: var(--slate-700);
            font-size: 1rem;
            line-height: 1.6;
        }
        
        /* Divider */
        .divider {
            text-align: center;
            margin: 2rem 0;
            color: var(--slate-400);
            font-size: 1.25rem;
        }
        
        /* Values Section */
        .values-section {
            background: var(--slate-50);
            padding: 4rem 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-eyebrow {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            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: 1rem;
        }
        
        .section-divider {
            width: 60px;
            height: 3px;
            background: var(--gradient-2);
            margin: 1rem auto 0;
            border-radius: 3px;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .value-card {
            background: white;
            border-radius: 1rem;
            padding: 1.75rem;
            border: 1px solid var(--slate-200);
            transition: all 0.2s ease;
        }
        
        .value-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px -12px rgba(0,0,0,0.1);
            border-color: var(--slate-300);
        }
        
        .value-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .value-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--slate-900);
            margin-bottom: 0.5rem;
        }
        
        .value-description {
            font-size: 0.875rem;
            color: var(--slate-600);
            line-height: 1.5;
        }
        
        /* Who We Are Section */
        .who-section {
            padding: 4rem 0;
        }
        
        .profile-card {
            background: var(--slate-50);
            border-radius: 1.5rem;
            padding: 2rem;
            text-align: center;
            max-width: 500px;
            margin: 0 auto;
            border: 1px solid var(--slate-200);
        }
        
        .profile-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .profile-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--slate-900);
            margin-bottom: 0.25rem;
        }
        
        .profile-title {
            font-size: 0.875rem;
            color: var(--rich-gold);
            margin-bottom: 1rem;
        }
        
        .profile-bio {
            color: var(--slate-600);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .profile-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }
        
        .profile-links a {
            color: var(--slate-500);
            text-decoration: none;
            transition: color 0.15s ease;
            font-size: 1.25rem;
        }
        
        .profile-links a:hover {
            color: var(--rich-gold);
        }
        
        /* What to Expect Section */
        .expect-section {
            background: var(--slate-900);
            padding: 4rem 0;
            color: white;
        }
        
        .expect-section .section-title {
            color: white;
        }
        
        .expect-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .expect-item {
            text-align: center;
            padding: 1.5rem;
        }
        
        .expect-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .expect-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .expect-description {
            font-size: 0.875rem;
            color: var(--slate-400);
            line-height: 1.5;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 4rem 0;
            text-align: center;
            background: var(--gradient-warm);
        }
        
        .cta-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--slate-900);
            margin-bottom: 0.5rem;
        }
        
        .cta-description {
            color: var(--slate-600);
            margin-bottom: 1.5rem;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--slate-900);
            color: white;
            padding: 0.875rem 2rem;
            border-radius: 0.75rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s ease;
        }
        
        .cta-button:hover {
            background: var(--slate-800);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px -8px rgba(0,0,0,0.2);
        }
        
        /* Footer */
        .site-footer {
            background: var(--slate-50);
            padding: 3rem 0 2rem;
            border-top: 1px solid var(--slate-200);
        }

        #footerLogo {
            display: inline-block;
            margin-bottom: 0.5rem;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-brand p {
            font-size: 0.75rem;
            color: var(--slate-500);
            max-width: 300px;
        }
        
        .footer-links {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: var(--slate-600);
            text-decoration: none;
            font-size: 0.75rem;
            transition: color 0.15s ease;
        }
        
        .footer-links a:hover {
            color: var(--rich-gold);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--slate-200);
            font-size: 0.7rem;
            color: var(--slate-400);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 0 1.25rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .story-title {
                font-size: 1.25rem;
            }
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            .values-grid {
                grid-template-columns: 1fr;
            }
            .expect-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .story-block, .value-card, .profile-card, .expect-item {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }
        
        .story-block:nth-child(1) { animation-delay: 0.05s; opacity: 0; animation-fill-mode: forwards; }
        .story-block:nth-child(2) { animation-delay: 0.1s; opacity: 0; animation-fill-mode: forwards; }
        .story-block:nth-child(3) { animation-delay: 0.15s; opacity: 0; animation-fill-mode: forwards; }
        .story-block:nth-child(4) { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }