
        :root {
            /* Color Variables based on the provided design tokens */
            --primary: #0040a1;
            --primary-container: #0056d2;
            --on-primary: #ffffff;
            --on-primary-container: #ccd8ff;
            --secondary: #00668a;
            --secondary-container: #3dc2fd;
            --on-secondary-container: #004d69;
            --tertiary: #005145;
            --background: #f3faff;
            --on-background: #021f29;
            --surface: #f3faff;
            --on-surface: #021f29;
            --surface-variant: #cbe7f5;
            --on-surface-variant: #424654;
            --surface-container: #d8f2ff;
            --surface-container-low: #e6f6ff;
            --surface-container-lowest: #ffffff;
            --surface-container-high: #d1ecfa;
            --surface-container-highest: #cbe7f5;
            --outline: #737785;
            --outline-variant: #c3c6d6;
            
            --font-headline: 'Manrope', sans-serif;
            --font-body: 'Inter', sans-serif;
            
            --max-width: 1280px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html.scroll-smooth {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--background);
            color: var(--on-background);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4 {
            font-family: var(--font-headline);
            letter-spacing: -0.02em;
            color: var(--on-surface);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Navbar Styles */
        .main-header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0px 20px 40px rgba(2, 31, 41, 0.06);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            items-center: center;
            height: 80px;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 900;
            color: #1e3a8a; /* Tailwind blue-900 equivalent */
            tracking-tighter: -0.05em;
        }

        .nav-links {
            display: none;
        }

        @media (min-width: 768px) {
            .nav-links {
                display: flex;
                gap: 2rem;
                align-items: center;
            }
        }

        .nav-link {
            font-weight: 500;
            color: #475569; /* slate-600 */
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: #1e40af; /* blue-800 */
        }

        .nav-link.active {
            color: #1d4ed8; /* blue-700 */
            font-weight: 700;
            border-bottom: 2px solid #1d4ed8;
            padding-bottom: 4px;
        }

        .btn-primary {
            background: linear-gradient(to right, var(--primary), var(--primary-container));
            color: var(--on-primary);
            padding: 0.625rem 1.5rem;
            border-radius: 9999px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: transform 0.3s, opacity 0.3s;
            position: relative;
            overflow: hidden;
            display: inline-block;
        }

        .btn-primary:hover {
            opacity: 0.8;
            transform: scale(0.95);
        }

        .btn-primary:active {
            transform: scale(1);
        }

        /* Shine Effect Animation */
        .shine-effect::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            animation: shimmer 4s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
        }

        main {
            padding-top: 80px;
        }

        /* Hero - using shared .page-hero from style.css */

        .badge-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .badge-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background-color: var(--surface-container-low);
            padding: 0.5rem 1rem;
            border-radius: 0.75rem;
            font-weight: 500;
        }

        .badge-item .material-symbols-outlined {
            color: var(--primary);
        }

        /* Story Section */
        .story-section {
            background-color: var(--surface-container-low);
            padding: 6rem 0;
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 5rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .story-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .owner-image-wrapper {
            position: relative;
            justify-self: center;
        }

        .owner-img {
            border-radius: 1rem;
            max-width: 100%;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .owner-badge {
            position: absolute;
            bottom: -1.5rem;
            right: -1.5rem;
            background-color: var(--primary);
            color: var(--on-primary);
            padding: 2rem;
            border-radius: 1rem;
        }

        .owner-badge .name {
            font-size: 1.875rem;
            font-weight: 900;
        }

        .owner-badge .title {
            font-size: 0.875rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .story-content h2 {
            font-size: 2.25rem;
            margin-bottom: 2rem;
        }

        .story-text {
            color: var(--on-surface-variant);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .story-features {
            padding-top: 1rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .feature-row {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .feature-icon-box {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            background-color: var(--secondary-container);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon-box .material-symbols-outlined {
            color: var(--on-secondary-container);
        }

        .feature-info h4 {
            color: var(--on-surface);
            font-weight: 700;
        }

        .feature-info p {
            font-size: 0.875rem;
        }

        /* Stats Section - Bento Grid */
        .stats-section {
            padding: 6rem 0;
        }

        .stats-section h2 {
            text-align: center;
            font-size: 2.25rem;
            margin-bottom: 4rem;
        }

        .bento-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .bento-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .bento-grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }

        .bento-card {
            border-radius: 2rem;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
        }

        .bento-large {
            grid-column: span 1;
            background-color: var(--surface-container-lowest);
            border: 1px solid rgba(195, 198, 214, 0.1);
            box-shadow: 0px 20px 40px rgba(2, 31, 41, 0.06);
            justify-content: space-between;
        }

        @media (min-width: 768px) {
            .bento-large { grid-column: span 2; }
        }
        @media (min-width: 1024px) {
            .bento-large { grid-column: span 3; }
        }

        .bento-large .material-symbols-outlined {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 2rem;
            font-variation-settings: 'FILL' 1;
        }

        .bento-large .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .bento-large .stat-label {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .bento-large .stat-desc {
            color: var(--on-surface-variant);
            font-size: 0.875rem;
        }

        .bento-stat {
            grid-column: span 1;
            background-color: var(--surface-container);
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        @media (min-width: 768px) {
            .bento-stat { grid-column: span 2; }
        }
        @media (min-width: 1024px) {
            .bento-stat { grid-column: span 3; }
        }

        .bento-stat .stat-number-giant {
            font-size: 4.5rem;
            font-weight: 900;
            color: var(--on-secondary-container);
            letter-spacing: -0.05em;
        }

        .bento-image {
            grid-column: span 1;
            border-radius: 2rem;
            overflow: hidden;
            min-height: 300px;
        }

        @media (min-width: 768px) {
            .bento-image { grid-column: span 2; }
        }
        @media (min-width: 1024px) {
            .bento-image { grid-column: span 2; }
        }

        .bento-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .bento-quote {
            grid-column: span 1;
            background-color: var(--primary);
            color: var(--on-primary);
            justify-content: center;
        }

        @media (min-width: 768px) {
            .bento-quote { grid-column: span 2; }
        }
        @media (min-width: 1024px) {
            .bento-quote { grid-column: span 4; }
        }

        .bento-quote .quote-text {
            font-size: 1.5rem;
            font-style: italic;
            font-weight: 500;
            line-height: 1.5;
        }

        .bento-quote .quote-author {
            margin-top: 1.5rem;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.875rem;
            letter-spacing: 0.1em;
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 0;
        }

        .cta-card {
            background-color: var(--surface-container-highest);
            border-radius: 3rem;
            padding: 4rem 1rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            max-width: 1024px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .cta-card {
                padding: 4rem;
            }
        }

        .cta-icon-bg {
            position: absolute;
            top: 3rem;
            right: 3rem;
            opacity: 0.1;
        }

        .cta-icon-bg .material-symbols-outlined {
            font-size: 8rem;
            font-variation-settings: 'FILL' 1;
        }

        .cta-card h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .cta-card h2 {
                font-size: 3rem;
            }
        }

        .cta-card p {
            font-size: 1.125rem;
            color: var(--on-surface-variant);
            max-width: 42rem;
            margin: 0 auto 2.5rem;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
        }

        @media (min-width: 640px) {
            .cta-buttons {
                flex-direction: row;
            }
        }

        .btn-large {
            padding: 1rem 2.5rem;
            font-size: 1.125rem;
            font-weight: 700;
            border-radius: 9999px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-filled {
            background-color: var(--primary);
            color: #ffffff;
            border: none;
        }

        .btn-filled:hover {
            opacity: 0.9;
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: #ffffff;
        }

        /* Footer */
        .main-footer {
            border-top: 1px solid rgba(2, 31, 41, 0.05);
            background-color: #f8fafc; /* slate-50 */
            padding: 4rem 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .footer-brand h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 1.5rem;
        }

        .footer-brand p {
            color: #64748b; /* slate-500 */
            font-size: 0.875rem;
            line-height: 1.6;
        }

        .footer-links-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .footer-col h4 {
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
            color: #0f172a; /* slate-900 */
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-col a {
            font-size: 0.875rem;
            color: #64748b;
            transition: color 0.3s;
            text-decoration: underline;
        }

        .footer-col a:hover {
            color: #2563eb;
        }

        .footer-col a.active-link {
            color: #1d4ed8;
            text-decoration: none;
            font-weight: 500;
        }

        .footer-contact .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #64748b;
            margin-bottom: 0.75rem;
        }

        .footer-contact .contact-item .material-symbols-outlined {
            color: #1d4ed8;
            font-size: 1.25rem;
        }

        .footer-contact .contact-item span {
            font-size: 0.875rem;
        }

        /* Material Symbols Custom Config */
        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }


                /* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
    z-index: 100;
}

.mobile-menu a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--on-surface);
}

.mobile-menu.active {
    right: 0;
}

/* Hide desktop nav on mobile */
@media (max-width: 1023px) {
    .nav-links {
        display: none;
    }
}

/* Show hamburger on mobile */
@media (min-width: 1024px) {
    .mobile-menu {
        display: none;
    }
}