
        :root {
            --aamo7-primary: #FF6600;
            --aamo7-primary-dark: #E65C00;
            --aamo7-secondary: #2B2E33;
            --aamo7-bg-light: #F8F9FA;
            --aamo7-text-main: #333333;
            --aamo7-text-muted: #666666;
            --aamo7-white: #FFFFFF;
            --aamo7-glass: rgba(255, 255, 255, 0.85);
            --aamo7-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --aamo7-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

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

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

        /* Layout Helpers */
        .aamo7-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
        }

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

        .aamo7-grid {
            display: grid;
            gap: 32px;
        }

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

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

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

        .aamo7-navbar.aamo7-scrolled {
            height: 64px;
            box-shadow: var(--aamo7-shadow);
        }

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

        .aamo7-logo {
            flex-shrink: 0;
            min-width: 0;
        }

        .aamo7-logo img {
            height: 36px;
            width: auto;
            display: block;
        }

        .aamo7-nav-links {
            display: flex;
            gap: 24px;
            list-style: none;
            flex-wrap: wrap;
            min-width: 0;
        }

        .aamo7-nav-links a {
            text-decoration: none;
            color: var(--aamo7-secondary);
            font-weight: 500;
            font-size: 15px;
            transition: var(--aamo7-transition);
            padding: 8px 4px;
            position: relative;
        }

        .aamo7-nav-links a:hover {
            color: var(--aamo7-primary);
        }

        .aamo7-nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--aamo7-primary);
            transition: var(--aamo7-transition);
            transform: translateX(-50%);
        }

        .aamo7-nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section - Unique Diagonal Layout */
        .aamo7-hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            overflow: hidden;
            background: #000;
        }

        .aamo7-hero-bg {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .aamo7-hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }

        .aamo7-hero-content {
            position: relative;
            z-index: 2;
            color: var(--aamo7-white);
            max-width: 800px;
        }

        .aamo7-hero-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(255, 102, 0, 0.2);
            border: 1px solid var(--aamo7-primary);
            border-radius: 50px;
            margin-bottom: 24px;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .aamo7-hero-subtitle {
            margin: 24px 0 48px;
            opacity: 0.9;
            max-width: 600px;
        }

        .aamo7-btn-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            min-width: 0;
        }

        .aamo7-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 40px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--aamo7-transition);
            cursor: pointer;
            border: none;
        }

        .aamo7-btn-primary {
            background: linear-gradient(135deg, var(--aamo7-primary), #FF8833);
            color: var(--aamo7-white);
            box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
        }

        .aamo7-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(255, 102, 0, 0.4);
        }

        .aamo7-btn-outline {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: var(--aamo7-white);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .aamo7-btn-outline:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: var(--aamo7-white);
        }

        /* Ecosystem Matrix - Grid Layout */
        .aamo7-ecosystem {
            padding: 96px 0;
            background: var(--aamo7-bg-light);
        }

        .aamo7-section-header {
            text-align: center;
            margin-bottom: 64px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .aamo7-matrix-card {
            background: var(--aamo7-white);
            padding: 48px;
            border-radius: 24px;
            border: 1px solid rgba(0,0,0,0.03);
            transition: var(--aamo7-transition);
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

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

        .aamo7-platform-icon {
            font-size: 40px;
            margin-bottom: 24px;
            color: var(--aamo7-primary);
        }

        .aamo7-feature-list {
            margin: 24px 0;
            list-style: none;
        }

        .aamo7-feature-list li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            color: var(--aamo7-text-muted);
            font-size: 15px;
        }

        .aamo7-feature-list li::before {
            content: "✓";
            color: var(--aamo7-primary);
            margin-right: 12px;
            font-weight: bold;
        }

        .aamo7-version-tag {
            margin-top: auto;
            font-size: 13px;
            color: var(--aamo7-text-muted);
            background: #F1F3F5;
            padding: 4px 12px;
            border-radius: 4px;
            align-self: flex-start;
        }

        /* AI Feature - Image Left, Text Right */
        .aamo7-ai-section {
            padding: 120px 0;
        }

        .aamo7-split-view {
            display: flex;
            align-items: center;
            gap: 64px;
            flex-wrap: wrap;
        }

        .aamo7-split-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .aamo7-split-image img {
            width: 100%;
            border-radius: 32px;
            box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
        }

        .aamo7-split-content {
            flex: 1;
            min-width: 300px;
        }

        /* Cross Platform - Text Left, Image Right */
        .aamo7-cross-section {
            padding: 120px 0;
            background: var(--aamo7-secondary);
            color: var(--aamo7-white);
            border-radius: 64px;
            margin: 0 24px;
        }

        .aamo7-reverse {
            flex-direction: row-reverse;
        }

        /* Latest Articles - Dynamic */
        .aamo7-news-section {
            padding: 96px 0;
        }

        .aamo7-news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 24px;
        }

        .aamo7-news-item {
            padding: 32px;
            border-bottom: 1px solid #EEE;
            transition: var(--aamo7-transition);
            min-width: 0;
        }

        .aamo7-news-item:hover {
            background: var(--aamo7-bg-light);
        }

        /* Footer */
        .aamo7-footer {
            background: #F8F9FA;
            padding: 80px 0 40px;
            margin-top: 80px;
            border-top: 1px solid #EEE;
        }

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

        .aamo7-footer-brand-area {
            grid-column: span 2;
        }

        .aamo7-footer-brand-name {
            font-size: 24px;
            font-weight: 800;
            color: var(--aamo7-primary);
            margin-bottom: 16px;
        }

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

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

        .aamo7-footer-links a {
            text-decoration: none;
            color: var(--aamo7-text-muted);
            transition: var(--aamo7-transition);
        }

        .aamo7-footer-links a:hover {
            color: var(--aamo7-primary);
        }

        .aamo7-footer-detail-img {
            width: 100%;
            max-width: 400px;
            border-radius: 16px;
            margin-top: 24px;
        }

        .aamo7-copyright {
            padding-top: 40px;
            border-top: 1px solid #EEE;
            text-align: center;
            color: var(--aamo7-text-muted);
            font-size: 14px;
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .aamo7-footer-brand-area {
                grid-column: span 1;
            }
        }

        @media (max-width: 768px) {
            .aamo7-navbar {
                height: auto;
                padding: 16px 0;
            }
            .aamo7-nav-links {
                display: none; /* In real case, add a mobile menu */
            }
            .aamo7-hero {
                text-align: center;
            }
            .aamo7-btn-group {
                justify-content: center;
            }
            .aamo7-split-view {
                gap: 32px;
            }
            .aamo7-cross-section {
                margin: 0;
                border-radius: 0;
            }
        }
    