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

        :root {
            --dark-bg: #0A0A0A;
            --dark-secondary: #1A1A1A;
            --dark-tertiary: #2A2A2A;
            --gold: #B09256;
            --gold-light: #C4A266;
            --blue: #1E88E5;
            --blue-light: #42A5F5;
            --text-primary: #F5F5F5;
            --text-secondary: #B8B8B8;
            --text-tertiary: #888888;
        }

        body {
            font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.7;
            font-weight: 300;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            padding: 1.5rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(176, 146, 86, 0.15);
        }

        .nav-container {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .logo-container:hover {
            opacity: 0.8;
        }

        .logo-image {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            font-size: 2rem;
            color: var(--dark-bg);
            letter-spacing: -1px;
        }

        .logo-image-img {
            width: 55px;
            height: 55px;
            object-fit: contain;
        }

        .logo-text-container {
            display: flex;
            flex-direction: column;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--gold);
            letter-spacing: 3px;
            font-family: 'Work Sans', sans-serif;
        }

        .logo-subtext {
            font-size: 0.65rem;
            color: var(--text-tertiary);
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 400;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 3rem;
        }

        nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 400;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        nav a:hover {
            color: var(--gold);
        }

        nav a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(170deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
            text-align: center;
            padding: 8rem 5% 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(176, 146, 86, 0.08) 0%, transparent 70%);
            filter: blur(60px);
            animation: float 20s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(6, 120, 90, 0.05) 0%, transparent 70%);
            filter: blur(80px);
            animation: float 25s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, 30px) scale(1.1); }
        }

        .hero-content {
            max-width: 1000px;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 6.5rem;
            margin-bottom: 0.5rem;
            color: var(--gold);
            letter-spacing: 8px;
            font-weight: 300;
            font-family: 'Cormorant Garamond', serif;
            line-height: 1.1;
        }

        .hero-pronunciation {
            font-size: 0.9rem;
            color: var(--text-tertiary);
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
            font-weight: 300;
            font-style: italic;
        }

        .hero-tagline {
            font-size: 1.3rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            letter-spacing: 2px;
            font-weight: 300;
        }

        .hero-description {
            font-size: 1.15rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            line-height: 1.9;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: var(--dark-bg);
            text-decoration: none;
            border-radius: 2px;
            font-weight: 500;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: 1.5px;
            font-size: 0.9rem;
            text-transform: uppercase;
            box-shadow: 0 10px 40px rgba(176, 146, 86, 0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(176, 146, 86, 0.35);
        }

        /* Section Styles */
        section {
            padding: 6rem 5%;
            max-width: 1600px;
            margin: 0 auto;
        }

        h2 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            color: var(--gold);
            letter-spacing: 2px;
            font-weight: 300;
            font-family: 'Cormorant Garamond', serif;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 4rem;
            font-weight: 300;
            line-height: 1.7;
            max-width: 900px;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .about-card {
            background: var(--dark-secondary);
            padding: 3rem;
            border-radius: 0;
            border-left: 2px solid var(--gold);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 2px;
            height: 0;
            background: var(--gold-light);
            transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-card:hover::before {
            height: 100%;
        }

        .about-card:hover {
            transform: translateX(8px);
            background: var(--dark-tertiary);
        }

        .about-card h3 {
            font-size: 1.6rem;
            color: var(--gold);
            margin-bottom: 1.2rem;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
        }

        .about-card p {
            color: var(--text-secondary);
            line-height: 1.8;
            font-weight: 300;
        }

        .credentials {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 2rem;
        }

        .credential-badge {
            background: transparent;
            color: var(--text-secondary);
            padding: 0.5rem 1rem;
            border-radius: 0;
            font-size: 0.8rem;
            font-weight: 400;
            border: 1px solid rgba(176, 146, 86, 0.3);
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .credential-badge:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        /* Founder Section */
        .founder-section {
            background: var(--dark-secondary);
            padding: 5rem;
            border-radius: 0;
            margin-top: 5rem;
            border-top: 1px solid rgba(176, 146, 86, 0.2);
            border-bottom: 1px solid rgba(176, 146, 86, 0.2);
        }

        .founder-content {
            display: grid;
            grid-template-columns: 220px 1fr;
            gap: 4rem;
            align-items: start;
        }

        .founder-image-placeholder {
            width: 220px;
            height: 220px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: var(--dark-bg);
            font-weight: 400;
            font-family: 'Cormorant Garamond', serif;
            letter-spacing: -2px;
            box-shadow: 0 20px 60px rgba(176, 146, 86, 0.3);
        }

        .founder-image {
            width: 220px;
            height: 220px;
            object-fit: cover;
            border-radius: 0;
            box-shadow: 0 20px 60px rgba(176, 146, 86, 0.3);
        }

        .founder-info h3 {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 0.5rem;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .founder-title {
            font-size: 1.1rem;
            color: var(--blue-light);
            margin-bottom: 2rem;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .founder-bio {
            color: var(--text-secondary);
            line-height: 1.9;
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        .founder-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .highlight-item {
            padding: 2rem;
            background: var(--dark-bg);
            border-radius: 0;
            border-left: 2px solid var(--gold);
            transition: all 0.3s ease;
        }

        .highlight-item:hover {
            background: var(--dark-tertiary);
            transform: translateY(-3px);
        }

        .highlight-number {
            font-size: 2.5rem;
            color: var(--gold);
            font-weight: 400;
            margin-bottom: 0.5rem;
            font-family: 'Cormorant Garamond', serif;
        }

        .highlight-label {
            font-size: 0.85rem;
            color: var(--text-tertiary);
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: var(--dark-secondary);
            padding: 2.5rem;
            border-radius: 0;
            border-top: 3px solid var(--gold);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gold-light);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover::before {
            width: 100%;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .service-number {
            font-size: 3rem;
            color: rgba(176, 146, 86, 0.2);
            opacity: 1;
            font-weight: 300;
            margin-bottom: 0.5rem;
            font-family: 'Cormorant Garamond', serif;
        }

        .service-card h3 {
            font-size: 1.6rem;
            color: var(--gold);
            margin-bottom: 1.5rem;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            line-height: 1.3;
        }

        .service-challenge {
            background: rgba(176, 146, 86, 0.08);
            padding: 1.5rem;
            border-radius: 0;
            margin-bottom: 1.5rem;
            border-left: 2px solid rgba(176, 146, 86, 0.4);
        }

        .service-challenge h4 {
            color: var(--gold);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .service-challenge ul {
            list-style: none;
            color: var(--text-secondary);
        }

        .service-challenge li {
            padding: 0.4rem 0;
            font-weight: 300;
        }

        .service-challenge li::before {
            content: "—";
            color: var(--gold);
            margin-right: 1rem;
        }

        .service-outcomes {
            margin-top: 1.5rem;
        }

        .service-outcomes h4 {
            color: var(--blue-light);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .service-outcomes ul {
            list-style: none;
            color: var(--text-primary);
        }

        .service-outcomes li {
            padding: 0.4rem 0;
            font-weight: 300;
        }

        .service-outcomes li::before {
            content: "✓";
            color: var(--blue-light);
            font-weight: 600;
            margin-right: 1rem;
        }

        .engagement-model {
            display: inline-block;
            background: rgba(6, 120, 90, 0.15);
            color: var(--blue-light);
            padding: 0.6rem 1.3rem;
            border-radius: 0;
            font-size: 0.8rem;
            font-weight: 500;
            margin-top: 1.5rem;
            letter-spacing: 1px;
            border: 1px solid var(--blue);
        }

        /* Approach Section */
        .approach-container {
            background: var(--dark-secondary);
            padding: 3rem;
            border-radius: 0;
            margin-top: 3rem;
            border-top: 1px solid rgba(176, 146, 86, 0.2);
            border-bottom: 1px solid rgba(176, 146, 86, 0.2);
        }

        .approach-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .approach-item {
            text-align: center;
            padding: 2rem;
            background: var(--dark-bg);
            border-radius: 0;
            border: 1px solid rgba(176, 146, 86, 0.15);
            transition: all 0.3s ease;
        }

        .approach-item:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
        }

        .approach-item h4 {
            color: var(--gold);
            margin-bottom: 1rem;
            font-size: 1.2rem;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
        }

        .approach-item p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            font-weight: 300;
            line-height: 1.7;
        }

        .ownership-model {
            margin-top: 3rem;
            padding: 2.5rem;
            background: var(--dark-bg);
            border-radius: 0;
            border: 1px solid rgba(176, 146, 86, 0.15);
        }

        .ownership-model h4 {
            color: var(--blue-light);
            margin-bottom: 1.5rem;
            text-align: center;
            font-size: 1.1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
        }

        .ownership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            text-align: center;
        }

        .ownership-item {
            padding: 1.2rem;
        }

        .ownership-label {
            font-weight: 600;
            margin-bottom: 0.8rem;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
        }

        .ownership-label.novaxyl {
            color: var(--gold);
        }

        .ownership-label.client {
            color: var(--blue-light);
        }

        .ownership-label.partners {
            color: var(--gold);
        }

        .client-text {
            color: var(--blue-light);
        }

        .novaxyl-text {
            color: var(--gold);
        }

        .ownership-desc {
            color: var(--text-tertiary);
            font-size: 0.9rem;
            font-weight: 300;
        }

        /* Blog Section */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .blog-card {
            background: var(--dark-secondary);
            border-radius: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(176, 146, 86, 0.15);
        }

        .blog-card:hover {
            transform: translateY(-8px);
            border-color: var(--gold);
        }

        .blog-image {
            height: 220px;
            background: linear-gradient(135deg, var(--blue) 0%, var(--gold) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }

        .blog-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.3) 100%);
        }

        .blog-content {
            padding: 2.5rem;
        }

        .blog-date {
            color: var(--text-tertiary);
            font-size: 0.8rem;
            margin-bottom: 0.8rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 500;
        }

        .blog-card h3 {
            color: var(--gold);
            margin-bottom: 1.2rem;
            font-size: 1.6rem;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            line-height: 1.3;
        }

        .blog-excerpt {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        .read-more {
            color: var(--blue-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .read-more:hover {
            color: var(--gold);
        }

        /* Contact Section */
        .contact-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-email-box {
            background: var(--dark-secondary);
            padding: 3rem;
            border-radius: 0;
            margin-top: 2.5rem;
            border-top: 2px solid var(--gold);
            border-bottom: 2px solid var(--gold);
        }

        .email-link {
            display: inline-block;
            font-size: 2rem;
            color: var(--gold);
            text-decoration: none;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            font-weight: 400;
            font-family: 'Cormorant Garamond', serif;
            letter-spacing: 1px;
        }

        .email-link:hover {
            color: var(--gold-light);
            transform: scale(1.05);
        }

        .email-requirements {
            background: var(--dark-bg);
            padding: 2rem;
            border-radius: 0;
            text-align: left;
            margin-top: 2rem;
            border-left: 2px solid var(--gold);
        }

        .email-requirements h4 {
            color: var(--gold);
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
        }

        .requirement-list {
            list-style: none;
            color: var(--text-primary);
        }

        .requirement-list li {
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(176, 146, 86, 0.1);
            font-weight: 300;
            line-height: 1.6;
        }
            border-bottom: 1px solid rgba(176, 146, 86, 0.1);
            font-weight: 300;
            line-height: 1.6;
        }

        .requirement-list li:last-child {
            border-bottom: none;
        }

        .requirement-list li strong {
            color: var(--gold);
            font-weight: 500;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .contact-card {
            background: var(--dark-secondary);
            padding: 2.5rem;
            border-radius: 0;
            text-align: center;
            border: 1px solid rgba(176, 146, 86, 0.15);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
        }

        .contact-card h4 {
            color: var(--gold);
            margin-bottom: 1rem;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            font-size: 1.3rem;
        }

        .contact-card p {
            color: var(--text-secondary);
            font-weight: 300;
        }

        /* Footer */
        footer {
            background: var(--dark-bg);
            border-top: 1px solid rgba(176, 146, 86, 0.2);
            padding: 2rem 5%;
            text-align: center;
        }

        .footer-content {
            max-width: 1600px;
            margin: 0 auto;
        }

        .copyright {
            color: var(--text-tertiary);
            font-size: 0.85rem;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .about-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }

            nav ul {
                gap: 2rem;
            }

            h2 {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem 5%;
            }

            nav ul {
                gap: 1rem;
                font-size: 0.85rem;
            }

            .logo-image-img {
                width: 45px;
                height: 45px;
            }

            .logo-text {
                font-size: 1.2rem;
            }

            .logo-subtext {
                font-size: 0.6rem;
            }

            .hero {
                padding: 7rem 5% 4rem;
            }

            .hero h1 {
                font-size: 3rem;
                letter-spacing: 4px;
            }

            .hero-pronunciation {
                font-size: 0.8rem;
            }

            .hero-tagline {
                font-size: 1.1rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            h2 {
                font-size: 2.2rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .services-grid,
            .blog-grid,
            .about-grid {
                grid-template-columns: 1fr;
            }

            .service-card {
                padding: 2rem;
            }

            .service-number {
                font-size: 2.5rem;
            }

            .service-card h3 {
                font-size: 1.4rem;
            }

            section {
                padding: 4rem 5%;
            }

            .founder-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .founder-image {
                margin: 0 auto;
                width: 180px;
                height: 180px;
            }

            .email-link {
                font-size: 1.5rem;
                word-break: break-all;
            }

            .contact-email-box {
                padding: 2rem 1.5rem;
            }

            .email-requirements {
                padding: 1.5rem;
            }

            .founder-section {
                padding: 3rem 2rem;
            }

            .approach-grid {
                grid-template-columns: 1fr;
            }

            .approach-container {
                padding: 2.5rem 1.5rem;
            }

            .approach-item {
                padding: 1.5rem;
            }

            .ownership-model {
                padding: 2rem 1.5rem;
            }

            .ownership-grid {
                grid-template-columns: 1fr;
            }

            .cta-button {
                padding: 1rem 2rem;
                font-size: 0.85rem;
            }

            .about-card {
                padding: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            .logo-image-img {
                width: 40px;
                height: 40px;
            }

            .founder-image {
                width: 150px;
                height: 150px;
            }

            .service-card {
                padding: 1.5rem;
            }

            nav ul {
                flex-wrap: wrap;
                gap: 0.8rem;
            }

            .logo-text {
                font-size: 1rem;
            }

            .email-link {
                font-size: 1.2rem;
            }
        }
            }

            .email-requirements {
                padding: 2rem;
            }

            .founder-section {
                padding: 3rem 2rem;
            }
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Section Backgrounds */
        #about { 
            background: var(--dark-bg); 
        }
        
        #services { 
            background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-secondary) 50%, var(--dark-bg) 100%);
        }
        
        #approach { 
            background: var(--dark-bg); 
        }
        
        #contact { 
            background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
        }
