
        :root {
            --aamo7-primary: #FF6B00;
            --aamo7-primary-light: #FF8E3C;
            --aamo7-dark: #1D1D1F;
            --aamo7-gray: #F5F5F7;
            --aamo7-text: #333333;
            --aamo7-text-secondary: #666666;
            --aamo7-white: #FFFFFF;
            --aamo7-accent: #0071E3;
            --aamo7-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

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

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

        /* Layout Container */
        .aamo7-container {
            max-width: 95vw;
            width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation */
        .aamo7-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .aamo7-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            height: 72px;
            min-width: 0;
        }

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

        .aamo7-logo img {
            height: 32px;
            display: block;
        }

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

        .aamo7-menu a {
            text-decoration: none;
            color: var(--aamo7-text);
            font-size: 15px;
            font-weight: 500;
            transition: var(--aamo7-transition);
            white-space: nowrap;
        }

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

        /* Hero Section - Unique Diagonal Layout */
        .aamo7-hero {
            padding-top: 160px;
            padding-bottom: 96px;
            background: linear-gradient(135deg, #FFF9F5 0%, #FFFFFF 100%);
            position: relative;
            overflow: hidden;
        }

        .aamo7-hero::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 60%;
            height: 140%;
            background: radial-gradient(circle, rgba(255,107,0,0.05) 0%, transparent 70%);
            transform: rotate(-15deg);
            z-index: 0;
        }

        .aamo7-hero-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            position: relative;
            z-index: 1;
            min-width: 0;
        }

        .aamo7-hero-text {
            flex: 1 1 500px;
            min-width: 0;
            padding-right: 48px;
        }

        .aamo7-hero-title {
            font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
            line-height: 1.1;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--aamo7-dark);
            word-break: keep-all;
        }

        .aamo7-hero-subtitle {
            font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.4rem);
            color: var(--aamo7-text-secondary);
            margin-bottom: 48px;
            max-width: 600px;
            line-height: 1.8;
        }

        .aamo7-hero-visual {
            flex: 1 1 400px;
            min-width: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Custom Visual Placeholder */
        .aamo7-ai-orb {
            width: 320px;
            height: 320px;
            background: linear-gradient(45deg, var(--aamo7-primary), var(--aamo7-primary-light));
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            box-shadow: 0 40px 80px rgba(255,107,0,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: aamo7-morph 8s ease-in-out infinite;
        }

        @keyframes aamo7-morph {
            0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: scale(1); }
            50% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%; transform: scale(1.05); }
            100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: scale(1); }
        }

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

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

        .aamo7-btn-primary {
            background-color: var(--aamo7-primary);
            color: var(--aamo7-white);
            box-shadow: 0 10px 20px rgba(255,107,0,0.2);
        }

        .aamo7-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255,107,0,0.3);
            background-color: var(--aamo7-primary-light);
        }

        /* Matrix Section */
        .aamo7-matrix {
            padding: 96px 0;
            background-color: var(--aamo7-white);
        }

        .aamo7-section-label {
            display: block;
            text-transform: uppercase;
            color: var(--aamo7-primary);
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 16px;
            font-size: 14px;
        }

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

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

        .aamo7-matrix-card:hover {
            background: var(--aamo7-white);
            border-color: var(--aamo7-primary);
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.05);
        }

        .aamo7-platform-tag {
            font-size: 13px;
            font-weight: 700;
            color: var(--aamo7-accent);
            margin-bottom: 16px;
        }

        .aamo7-matrix-title {
            font-size: 24px;
            margin-bottom: 24px;
            font-weight: 700;
        }

        .aamo7-feature-list {
            list-style: none;
            margin-bottom: 32px;
            flex-grow: 1;
        }

        .aamo7-feature-list li {
            margin-bottom: 12px;
            color: var(--aamo7-text-secondary);
            font-size: 15px;
            display: flex;
            align-items: center;
        }

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

        .aamo7-version-info {
            font-size: 14px;
            color: #999;
            border-top: 1px solid rgba(0,0,0,0.05);
            padding-top: 24px;
        }

        /* Dynamic Content Section */
        .aamo7-news {
            padding: 96px 0;
            background-color: var(--aamo7-dark);
            color: var(--aamo7-white);
        }

        .aamo7-news-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 48px;
            min-width: 0;
        }

        .aamo7-news-item {
            flex: 1 1 300px;
            background: rgba(255,255,255,0.05);
            padding: 32px;
            border-radius: 16px;
            transition: var(--aamo7-transition);
            min-width: 0;
        }

        .aamo7-news-item:hover {
            background: rgba(255,255,255,0.1);
        }

        .aamo7-news-date {
            color: var(--aamo7-primary-light);
            font-size: 14px;
            margin-bottom: 12px;
            display: block;
        }

        .aamo7-news-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            line-height: 1.4;
        }

        /* Footer */
        .aamo7-footer {
            padding: 80px 0 40px;
            background-color: var(--aamo7-gray);
            border-top: 1px solid rgba(0,0,0,0.05);
        }

        .aamo7-footer-main {
            display: flex;
            flex-wrap: wrap;
            gap: 64px;
            margin-bottom: 64px;
            min-width: 0;
        }

        .aamo7-footer-col {
            flex: 1 1 200px;
            min-width: 0;
        }

        .aamo7-brand-text {
            font-size: 24px;
            font-weight: 800;
            color: var(--aamo7-dark);
            margin-bottom: 24px;
        }

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

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

        .aamo7-footer-links a {
            text-decoration: none;
            color: var(--aamo7-text-secondary);
            font-size: 14px;
            transition: var(--aamo7-transition);
        }

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

        .aamo7-copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(0,0,0,0.05);
            color: #999;
            font-size: 13px;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .aamo7-hero-text {
                padding-right: 0;
                text-align: center;
                margin-bottom: 64px;
            }
            .aamo7-hero-content {
                justify-content: center;
            }
            .aamo7-btn-group {
                justify-content: center;
            }
            .aamo7-hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (max-width: 768px) {
            .aamo7-nav {
                justify-content: center;
                height: auto;
                padding: 16px 0;
            }
            .aamo7-menu {
                justify-content: center;
                margin-top: 16px;
                gap: 12px;
            }
            .aamo7-hero {
                padding-top: 120px;
            }
            .aamo7-matrix-grid {
                grid-template-columns: 1fr;
            }
        }
    