
        :root {
            --m04y-primary: #0052cc;
            --m04y-secondary: #002d72;
            --m04y-accent: #00d1b2;
            --m04y-bg-soft: #f8fafc;
            --m04y-text-main: #1e293b;
            --m04y-text-light: #64748b;
            --m04y-white: #ffffff;
            --m04y-border: rgba(0, 82, 204, 0.1);
            --m04y-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            --m04y-max-w: 1320px;
        }

        * {
            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-main);
            background-color: var(--m04y-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3 {
            line-height: 1.2;
            word-break: keep-all;
            white-space: normal;
        }

        p {
            line-height: 1.8;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .m04y-fluid-h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); font-weight: 800; }
        .m04y-fluid-h2 { font-size: clamp(2rem, 3vw + 0.5rem, 3rem); font-weight: 700; }
        .m04y-fluid-p { font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem); }

        /* Navigation */
        .m04y-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid var(--m04y-border);
            transition: all 0.3s ease;
        }

        .m04y-nav-container {
            max-width: var(--m04y-max-w);
            margin: 0 auto;
            padding: 0 24px;
            height: 80px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

        .m04y-logo {
            flex-shrink: 0;
            min-width: 0;
            display: flex;
            align-items: center;
        }

        .m04y-logo img {
            height: 32px;
            width: auto;
        }

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

        .m04y-menu-item a {
            text-decoration: none;
            color: var(--m04y-text-main);
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.2s ease;
            font-size: 15px;
        }

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

        .m04y-menu-item a.active {
            color: var(--m04y-white);
            background: var(--m04y-primary);
        }

        /* Hero Section */
        .m04y-hero {
            padding: 160px 24px 96px;
            background: radial-gradient(circle at 90% 10%, rgba(0, 82, 204, 0.05) 0%, transparent 40%),
                        radial-gradient(circle at 10% 90%, rgba(0, 209, 178, 0.05) 0%, transparent 40%);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .m04y-hero-content {
            max-width: 900px;
            min-width: 0;
            z-index: 2;
        }

        .m04y-hero-badge {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(0, 82, 204, 0.1);
            color: var(--m04y-primary);
            border-radius: 100px;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 24px;
        }

        .m04y-hero-subtitle {
            margin-top: 24px;
            color: var(--m04y-text-light);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .m04y-hero-actions {
            margin-top: 48px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }

        .m04y-btn {
            padding: 16px 40px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 180px;
        }

        .m04y-btn-primary {
            background: linear-gradient(135deg, var(--m04y-primary), var(--m04y-secondary));
            color: var(--m04y-white);
            box-shadow: 0 10px 20px rgba(0, 82, 204, 0.2);
        }

        .m04y-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 82, 204, 0.3);
        }

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

        .m04y-btn-outline:hover {
            background: rgba(0, 82, 204, 0.05);
        }

        /* Matrix Section */
        .m04y-matrix {
            padding: 96px 24px;
            max-width: var(--m04y-max-w);
            margin: 0 auto;
        }

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

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

        .m04y-card {
            background: var(--m04y-white);
            border: 1px solid var(--m04y-border);
            border-radius: 24px;
            padding: 40px;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

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

        .m04y-card-icon {
            width: 64px;
            height: 64px;
            background: var(--m04y-bg-soft);
            border-radius: 16px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--m04y-primary);
            font-weight: bold;
        }

        .m04y-card-title {
            font-size: 22px;
            margin-bottom: 16px;
            color: var(--m04y-secondary);
        }

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

        .m04y-tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
        }

        .m04y-tag {
            font-size: 12px;
            padding: 4px 12px;
            background: #f1f5f9;
            color: #475569;
            border-radius: 6px;
            font-weight: 500;
        }

        /* Feature Highlight Section */
        .m04y-highlight {
            padding: 96px 24px;
            background-color: var(--m04y-bg-soft);
        }

        .m04y-highlight-container {
            max-width: var(--m04y-max-w);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 64px;
        }

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

        .m04y-highlight-visual {
            flex: 1;
            min-width: 320px;
            height: 400px;
            background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
            border-radius: 32px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
        }

        .m04y-visual-box {
            width: 80%;
            height: 60%;
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .m04y-line {
            height: 8px;
            background: #f1f5f9;
            border-radius: 4px;
        }

        /* News/Dynamic Section */
        .m04y-news {
            padding: 96px 24px;
            max-width: var(--m04y-max-w);
            margin: 0 auto;
        }

        /* Footer */
        .m04y-footer {
            background: var(--m04y-secondary);
            color: rgba(255, 255, 255, 0.8);
            padding: 80px 24px 40px;
        }

        .m04y-footer-grid {
            max-width: var(--m04y-max-w);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 64px;
        }

        .m04y-footer-brand h3 {
            color: var(--m04y-white);
            margin-bottom: 24px;
            font-size: 24px;
        }

        .m04y-footer-links h4 {
            color: var(--m04y-white);
            margin-bottom: 24px;
            font-size: 16px;
        }

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

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

        .m04y-footer-links a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s;
        }

        .m04y-footer-links a:hover {
            color: var(--m04y-white);
        }

        .m04y-footer-bottom {
            max-width: var(--m04y-max-w);
            margin: 0 auto;
            padding-top: 40px;
            text-align: center;
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .m04y-nav-container { height: auto; padding: 16px 24px; }
            .m04y-menu { order: 3; width: 100%; justify-content: center; margin-top: 16px; }
        }

        @media (max-width: 768px) {
            .m04y-grid { grid-template-columns: 1fr; }
            .m04y-highlight-container { flex-direction: column; }
            .m04y-menu { gap: 4px; }
            .m04y-menu-item a { padding: 6px 10px; font-size: 13px; }
            .m04y-hero { padding: 140px 24px 64px; }
        }
    