
        :root {
            --uk3xk0-primary: #FFB84D;
            --uk3xk0-primary-dark: #e6a645;
            --uk3xk0-secondary: #2D3436;
            --uk3xk0-bg-light: #FAFAFA;
            --uk3xk0-text: #333333;
            --uk3xk0-text-muted: #666666;
            --uk3xk0-white: #FFFFFF;
            --uk3xk0-shadow: 0 10px 30px rgba(0,0,0,0.05);
            --uk3xk0-radius: 16px;
            --uk3xk0-container: 1400px;
        }

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

        body {
            font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            color: var(--uk3xk0-text);
            background-color: var(--uk3xk0-white);
            line-height: 1.6;
            overflow-x: hidden;
            word-break: keep-all;
        }

        /* Layout Helpers */
        .uk3xk0-flex { display: flex; flex-wrap: wrap; }
        .uk3xk0-container { 
            max-width: var(--uk3xk0-container); 
            margin: 0 auto; 
            padding: 0 24px;
            width: 100%;
        }
        .uk3xk0-section { padding: 96px 0; position: relative; }

        /* Typography */
        h1, h2, h3 { 
            line-height: 1.2; 
            margin-bottom: 24px;
            font-weight: 700;
            word-break: keep-all;
        }
        h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); }
        h2 { font-size: clamp(2rem, 3vw + 0.8rem, 3rem); text-align: center; }
        p { 
            font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem); 
            line-height: 1.8;
            color: var(--uk3xk0-text-muted);
            max-width: 800px;
            word-break: break-word;
        }

        /* Navigation */
        .uk3xk0-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 rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .uk3xk0-nav-inner {
            height: 80px;
            justify-content: space-between;
            align-items: center;
        }
        .uk3xk0-logo {
            min-width: 0;
            flex: 0 0 auto;
        }
        .uk3xk0-logo img {
            height: 36px;
            display: block;
        }
        .uk3xk0-menu {
            align-items: center;
            list-style: none;
        }
        .uk3xk0-menu-item {
            margin-left: 32px;
            min-width: 0;
        }
        .uk3xk0-menu-link {
            text-decoration: none;
            color: var(--uk3xk0-text);
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s;
            position: relative;
        }
        .uk3xk0-menu-link:hover {
            color: var(--uk3xk0-primary);
        }
        .uk3xk0-menu-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--uk3xk0-primary);
            transition: width 0.3s;
        }
        .uk3xk0-menu-link:hover::after { width: 100%; }

        /* Hero Section - Asymmetrical Design */
        .uk3xk0-hero {
            background: linear-gradient(135deg, #FFF9F0 0%, #FFFFFF 100%);
            padding-top: 160px;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .uk3xk0-hero-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 32px;
            align-items: center;
            width: 100%;
        }
        .uk3xk0-hero-content {
            grid-column: 1 / span 7;
            min-width: 0;
        }
        .uk3xk0-hero-visual {
            grid-column: 8 / span 5;
            position: relative;
            min-width: 0;
        }
        .uk3xk0-hero-tag {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255, 184, 77, 0.1);
            color: var(--uk3xk0-primary-dark);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }
        .uk3xk0-hero-title {
            color: var(--uk3xk0-secondary);
            margin-bottom: 32px;
        }
        .uk3xk0-btn-group {
            margin-top: 48px;
            gap: 16px;
        }
        .uk3xk0-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
            min-width: 180px;
        }
        .uk3xk0-btn-primary {
            background: var(--uk3xk0-primary);
            color: var(--uk3xk0-white);
            box-shadow: 0 10px 20px rgba(255, 184, 77, 0.3);
        }
        .uk3xk0-btn-primary:hover {
            background: var(--uk3xk0-primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 184, 77, 0.4);
        }
        .uk3xk0-btn-outline {
            border: 2px solid var(--uk3xk0-primary);
            color: var(--uk3xk0-primary);
        }
        .uk3xk0-btn-outline:hover {
            background: rgba(255, 184, 77, 0.05);
            transform: translateY(-3px);
        }

        .uk3xk0-abstract-shape {
            width: 400px;
            height: 400px;
            background: linear-gradient(45deg, var(--uk3xk0-primary), #FFD93D);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            opacity: 0.2;
            filter: blur(40px);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: uk3xk0-morph 10s infinite alternate;
        }

        @keyframes uk3xk0-morph {
            0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
            100% { border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%; }
        }

        /* Features Grid - Unique Layout */
        .uk3xk0-features { background: var(--uk3xk0-bg-light); }
        .uk3xk0-feature-masonry {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-top: 64px;
        }
        .uk3xk0-feature-card {
            background: var(--uk3xk0-white);
            padding: 48px;
            border-radius: var(--uk3xk0-radius);
            box-shadow: var(--uk3xk0-shadow);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(0,0,0,0.03);
            min-width: 0;
        }
        .uk3xk0-feature-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }
        .uk3xk0-feature-icon {
            width: 64px;
            height: 64px;
            background: #FFF4E5;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 32px;
            color: var(--uk3xk0-primary);
        }
        .uk3xk0-feature-card h3 { font-size: 24px; color: var(--uk3xk0-secondary); }

        /* Comparison Section */
        .uk3xk0-comparison { background: var(--uk3xk0-white); }
        .uk3xk0-compare-table {
            width: 100%;
            margin-top: 48px;
            background: var(--uk3xk0-white);
            border-radius: var(--uk3xk0-radius);
            overflow: hidden;
            box-shadow: var(--uk3xk0-shadow);
            border-collapse: collapse;
        }
        .uk3xk0-compare-table th, .uk3xk0-compare-table td {
            padding: 24px;
            text-align: left;
            border-bottom: 1px solid #EEEEEE;
        }
        .uk3xk0-compare-table th { background: #fdfdfd; font-weight: 600; color: var(--uk3xk0-secondary); }
        .uk3xk0-compare-highlight { color: var(--uk3xk0-primary); font-weight: 700; }

        /* Dynamic Content Section */
        .uk3xk0-news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }
        .uk3xk0-news-item {
            padding: 32px;
            border-left: 4px solid var(--uk3xk0-primary);
            background: #fcfcfc;
            transition: background 0.3s;
            min-width: 0;
        }
        .uk3xk0-news-item:hover { background: #fffcf8; }
        .uk3xk0-news-date { font-size: 14px; color: var(--uk3xk0-text-muted); margin-bottom: 8px; }

        /* Footer */
        .uk3xk0-footer {
            background: var(--uk3xk0-secondary);
            color: rgba(255,255,255,0.8);
            padding: 80px 0 40px;
        }
        .uk3xk0-footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
            margin-bottom: 64px;
        }
        .uk3xk0-footer-brand h4 { color: var(--uk3xk0-white); font-size: 24px; margin-bottom: 16px; }
        .uk3xk0-footer-links h5 { color: var(--uk3xk0-white); margin-bottom: 24px; }
        .uk3xk0-footer-links ul { list-style: none; }
        .uk3xk0-footer-links li { margin-bottom: 12px; }
        .uk3xk0-footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; }
        .uk3xk0-footer-links a:hover { color: var(--uk3xk0-primary); }
        .uk3xk0-footer-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 14px;
        }

        /* Mobile Adjustments */
        @media (max-width: 1024px) {
            .uk3xk0-hero-grid { grid-template-columns: 1fr; }
            .uk3xk0-hero-content { grid-column: 1 / -1; text-align: center; }
            .uk3xk0-hero-visual { grid-column: 1 / -1; height: 300px; order: -1; }
            .uk3xk0-btn-group { justify-content: center; }
        }

        @media (max-width: 768px) {
            .uk3xk0-menu { display: none; }
            .uk3xk0-section { padding: 64px 0; }
            .uk3xk0-news-grid { grid-template-columns: 1fr; }
        }
    