
        :root {
            --m04y-primary: #D42D2D;
            --m04y-primary-hover: #B52222;
            --m04y-dark: #1A1A1A;
            --m04y-text: #333333;
            --m04y-text-light: #666666;
            --m04y-bg: #FFFFFF;
            --m04y-bg-alt: #F8F9FA;
            --m04y-glass: rgba(255, 255, 255, 0.85);
            --m04y-shadow: 0 10px 30px rgba(0,0,0,0.08);
            --m04y-radius: 16px;
            --m04y-container: 1300px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--m04y-text);
            line-height: 1.7;
            background-color: var(--m04y-bg);
            word-break: keep-all;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            color: var(--m04y-dark);
            line-height: 1.2;
            white-space: normal;
            word-break: keep-all;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

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

        /* Utility Classes */
        .m04y-container {
            max-width: var(--m04y-container);
            margin: 0 auto;
            padding: 0 24px;
        }

        .m04y-flex {
            display: flex;
            flex-wrap: wrap;
        }

        .m04y-flex-item {
            min-width: 0;
        }

        /* Navigation */
        .m04y-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: var(--m04y-glass);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            height: 72px;
        }

        .m04y-nav .m04y-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .m04y-logo {
            width: 140px;
            min-width: 0;
        }

        .m04y-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            list-style: none;
            min-width: 0;
        }

        .m04y-menu-item a {
            padding: 8px 16px;
            font-size: clamp(0.875rem, 1vw + 0.1rem, 1rem);
            font-weight: 500;
            color: var(--m04y-text-light);
            border-radius: 8px;
        }

        .m04y-menu-item a:hover {
            color: var(--m04y-primary);
            background: rgba(212, 45, 45, 0.05);
        }

        .m04y-menu-item a.m04y-active {
            color: var(--m04y-primary);
            font-weight: 700;
        }

        /* Hero Section - Unique Diagonal Layout */
        .m04y-hero {
            padding-top: 160px;
            padding-bottom: 96px;
            background: radial-gradient(circle at 80% 20%, rgba(212, 45, 45, 0.05) 0%, transparent 40%);
            position: relative;
            overflow: hidden;
        }

        .m04y-hero-content {
            width: 50%;
            min-width: 320px;
            padding-right: 48px;
            position: relative;
            z-index: 2;
        }

        .m04y-hero-title {
            font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -1px;
            background: linear-gradient(135deg, var(--m04y-dark) 60%, var(--m04y-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .m04y-hero-subtitle {
            font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.375rem);
            color: var(--m04y-text-light);
            margin-bottom: 40px;
            max-width: 600px;
        }

        .m04y-hero-visual {
            position: absolute;
            top: 80px;
            right: -5%;
            width: 55%;
            min-width: 0;
            transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
            box-shadow: var(--m04y-shadow);
            border-radius: var(--m04y-radius);
            overflow: hidden;
        }

        .m04y-hero-visual img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .m04y-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 40px;
            background: var(--m04y-primary);
            color: #fff;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.125rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(212, 45, 45, 0.3);
        }

        .m04y-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 45, 45, 0.4);
            background: var(--m04y-primary-hover);
            color: #fff;
        }

        /* Productivity Matrix Grid */
        .m04y-matrix {
            padding: 96px 0;
            background: var(--m04y-bg-alt);
        }

        .m04y-section-head {
            text-align: center;
            margin-bottom: 64px;
        }

        .m04y-section-title {
            font-size: clamp(2rem, 3vw + 0.5rem, 2.75rem);
            margin-bottom: 16px;
        }

        .m04y-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .m04y-card {
            background: var(--m04y-bg);
            padding: 40px;
            border-radius: var(--m04y-radius);
            transition: all 0.4s ease;
            border: 1px solid rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .m04y-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--m04y-shadow);
            border-color: var(--m04y-primary);
        }

        .m04y-card-icon {
            font-size: 2.5rem;
            margin-bottom: 24px;
            color: var(--m04y-primary);
        }

        .m04y-card-title {
            font-size: 1.5rem;
            margin-bottom: 16px;
            font-weight: 700;
        }

        .m04y-card-desc {
            color: var(--m04y-text-light);
            margin-bottom: 24px;
            font-size: 0.95rem;
        }

        .m04y-feature-list {
            list-style: none;
            margin-top: auto;
        }

        .m04y-feature-tag {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(0,0,0,0.04);
            border-radius: 4px;
            font-size: 0.8rem;
            margin-right: 8px;
            margin-bottom: 8px;
            color: var(--m04y-text);
        }

        /* Feature Section - Image Text Alt */
        .m04y-feature-row {
            padding: 96px 0;
            align-items: center;
            gap: 64px;
        }

        .m04y-feature-row.m04y-reverse {
            flex-direction: row-reverse;
        }

        .m04y-feature-image {
            flex: 1;
            min-width: 320px;
            border-radius: var(--m04y-radius);
            overflow: hidden;
            box-shadow: var(--m04y-shadow);
        }

        .m04y-feature-text {
            flex: 1;
            min-width: 320px;
        }

        .m04y-feature-text h3 {
            font-size: 2.25rem;
            margin-bottom: 24px;
        }

        /* Footer */
        .m04y-footer {
            background: var(--m04y-dark);
            color: rgba(255,255,255,0.7);
            padding: 80px 0 40px;
        }

        .m04y-footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
            margin-bottom: 64px;
        }

        .m04y-footer-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 24px;
        }

        .m04y-footer-title {
            color: #fff;
            font-size: 1.125rem;
            margin-bottom: 24px;
            font-weight: 600;
        }

        .m04y-footer-links {
            list-style: none;
        }

        .m04y-footer-links li {
            margin-bottom: 12px;
        }

        .m04y-footer-links a:hover {
            color: var(--m04y-primary);
            padding-left: 5px;
        }

        .m04y-footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 32px;
            text-align: center;
            font-size: 0.875rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .m04y-hero-content {
                width: 100%;
                padding-right: 0;
                text-align: center;
            }
            .m04y-hero-visual {
                position: relative;
                top: 0;
                right: 0;
                width: 90%;
                margin: 48px auto 0;
                transform: none;
            }
            .m04y-hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (max-width: 768px) {
            .m04y-nav {
                height: auto;
                padding: 12px 0;
            }
            .m04y-menu {
                display: none; /* In real scenario, implement a hamburger menu */
            }
            .m04y-feature-row {
                flex-direction: column !important;
                gap: 32px;
            }
            .m04y-feature-image, .m04y-feature-text {
                flex: none;
                width: 100%;
            }
        }
    