
        :root {
            --vf6p3w-primary: #EE4122;
            --vf6p3w-primary-dark: #D3361B;
            --vf6p3w-text-dark: #1D1D1F;
            --vf6p3w-text-gray: #86868B;
            --vf6p3w-bg-light: #F5F5F7;
            --vf6p3w-white: #FFFFFF;
            --vf6p3w-gap-base: 8px;
            --vf6p3w-container-width: 1360px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            color: var(--vf6p3w-text-dark);
            background-color: var(--vf6p3w-white);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* Layout Helpers */
        .vf6p3w-container {
            max-width: var(--vf6p3w-container-width);
            margin: 0 auto;
            padding: 0 40px;
            width: 100%;
        }

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

        .vf6p3w-grid {
            display: grid;
            gap: calc(var(--vf6p3w-gap-base) * 4);
        }

        /* Navigation */
        .vf6p3w-navbar {
            position: fixed;
            top: 24px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 48px);
            max-width: 1100px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 40px;
            z-index: 1000;
            padding: 12px 24px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .vf6p3w-logo {
            min-width: 0;
            height: 32px;
            display: flex;
            align-items: center;
        }

        .vf6p3w-logo img {
            height: 100%;
            width: auto;
        }

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

        .vf6p3w-nav-links a {
            text-decoration: none;
            color: var(--vf6p3w-text-dark);
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

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

        /* Hero Section - Unique Diagonal Layout */
        .vf6p3w-hero {
            position: relative;
            min-height: 100vh;
            padding-top: 120px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--vf6p3w-bg-light);
        }

        .vf6p3w-hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 700px;
            word-break: break-word;
            padding: 64px 0;
        }

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

        .vf6p3w-hero-subtitle {
            font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.5rem);
            color: var(--vf6p3w-text-gray);
            margin-bottom: 40px;
            max-width: 550px;
            line-height: 1.5;
        }

        .vf6p3w-hero-visual {
            position: absolute;
            top: 0;
            right: -10%;
            width: 65%;
            height: 100%;
            z-index: 1;
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
        }

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

        .vf6p3w-btn {
            display: inline-flex;
            align-items: center;
            padding: 18px 42px;
            background: var(--vf6p3w-primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 18px;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
            box-shadow: 0 10px 20px rgba(238, 65, 34, 0.2);
        }

        .vf6p3w-btn:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 30px rgba(238, 65, 34, 0.3);
            background: var(--vf6p3w-primary-dark);
        }

        /* Section: AI Engine - Bento Box Style */
        .vf6p3w-section-ai {
            padding: 120px 0;
            background: var(--vf6p3w-white);
        }

        .vf6p3w-bento-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 24px;
        }

        .vf6p3w-bento-card {
            background: var(--vf6p3w-bg-light);
            border-radius: 32px;
            overflow: hidden;
            padding: 40px;
            min-width: 0;
            transition: transform 0.3s ease;
            position: relative;
        }

        .vf6p3w-bento-card:hover {
            transform: translateY(-8px);
        }

        .vf6p3w-bento-card-large {
            grid-column: span 8;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .vf6p3w-bento-card-small {
            grid-column: span 4;
            background: var(--vf6p3w-primary);
            color: white;
        }

        .vf6p3w-bento-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 20px;
            margin-top: 24px;
        }

        .vf6p3w-card-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
            word-break: keep-all;
        }

        /* Section: Scenes - Staggered Layout */
        .vf6p3w-scene-section {
            padding: 80px 0;
            background: var(--vf6p3w-bg-light);
        }

        .vf6p3w-scene-item {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 64px;
            margin-bottom: 96px;
        }

        .vf6p3w-scene-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .vf6p3w-scene-text {
            flex: 1;
            min-width: 320px;
            word-break: break-word;
        }

        .vf6p3w-scene-image-wrap {
            flex: 1.2;
            min-width: 320px;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .vf6p3w-scene-image-wrap img {
            width: 100%;
            display: block;
            transition: scale 0.5s ease;
        }

        .vf6p3w-scene-image-wrap:hover img {
            scale: 1.05;
        }

        .vf6p3w-tag {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(238, 65, 34, 0.1);
            color: var(--vf6p3w-primary);
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 16px;
        }

        /* Culture Section - Immersive Wide */
        .vf6p3w-culture-block {
            padding: 160px 0;
            position: relative;
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            color: white;
            text-align: center;
        }

        .vf6p3w-culture-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .vf6p3w-culture-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .vf6p3w-culture-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 24px;
        }

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

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

        .vf6p3w-footer-brand {
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-bottom: 24px;
        }

        .vf6p3w-footer-links h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 16px;
        }

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

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

        .vf6p3w-footer-links a {
            color: inherit;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

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

        .vf6p3w-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 40px;
            text-align: center;
            font-size: 13px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .vf6p3w-hero-visual {
                width: 50%;
                right: -5%;
            }
            .vf6p3w-bento-grid {
                grid-template-columns: 1fr;
            }
            .vf6p3w-bento-card-large, .vf6p3w-bento-card-small {
                grid-column: span 1;
            }
        }

        @media (max-width: 768px) {
            .vf6p3w-navbar {
                border-radius: 20px;
                top: 12px;
                width: calc(100% - 24px);
                padding: 10px 16px;
            }
            .vf6p3w-nav-links {
                display: none; /* Mobile nav could be a burger menu but keeping it simple as per spec */
            }
            .vf6p3w-hero {
                padding-top: 80px;
                text-align: center;
                flex-direction: column;
            }
            .vf6p3w-hero-visual {
                position: relative;
                width: 100%;
                height: 300px;
                right: 0;
                clip-path: none;
                margin-top: 40px;
            }
            .vf6p3w-hero-content {
                max-width: 100%;
                padding: 40px 20px;
            }
            .vf6p3w-scene-item, .vf6p3w-scene-item:nth-child(even) {
                flex-direction: column;
                gap: 32px;
            }
            .vf6p3w-container {
                padding: 0 24px;
            }
            .vf6p3w-scene-text, .vf6p3w-scene-image-wrap {
                width: 100%;
                min-width: 0;
            }
        }
    