
        :root {
            --rg222-primary: #d82c2d;
            --rg222-accent: #0066ff;
            --rg222-bg-light: #f5f7fa;
            --rg222-text-dark: #1d1d1f;
            --rg222-text-gray: #424245;
            --rg222-white: #ffffff;
            --rg222-aurora-gradient: linear-gradient(135deg, #ff4d4d 0%, #0066ff 100%);
            --rg222-glass: rgba(255, 255, 255, 0.8);
            --rg222-max-width: 1400px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--rg222-bg-light);
            color: var(--rg222-text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            word-break: keep-all;
        }

        /* Layout Helpers */
        .rg222-container {
            max-width: var(--rg222-max-width);
            margin: 0 auto;
            padding: 0 48px;
        }

        @media (max-width: 768px) {
            .rg222-container {
                padding: 0 24px;
            }
        }

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

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

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

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

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

        .rg222-nav-menu li {
            min-width: 0;
        }

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

        .rg222-nav-menu a:hover,
        .rg222-nav-menu a.rg222-active {
            color: var(--rg222-primary);
        }

        /* Hero Section */
        .rg222-hero {
            position: relative;
            padding-top: 72px;
            min-height: 90vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: #000;
        }

        .rg222-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }

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

        .rg222-hero-title {
            font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .rg222-hero-subtitle {
            font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
            opacity: 0.9;
            margin-bottom: 48px;
            max-width: 600px;
            word-break: break-word;
        }

        .rg222-btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .rg222-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            min-width: 160px;
        }

        .rg222-btn-primary {
            background: var(--rg222-primary);
            color: var(--rg222-white);
            box-shadow: 0 10px 20px rgba(216, 44, 45, 0.3);
        }

        .rg222-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(216, 44, 45, 0.4);
        }

        /* Bento Grid Suites */
        .rg222-suites {
            padding: 96px 0;
        }

        .rg222-section-head {
            text-align: center;
            margin-bottom: 64px;
        }

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

        .rg222-section-title {
            font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
            font-weight: 800;
        }

        .rg222-grid-bento {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 24px;
        }

        .rg222-suite-card {
            background: var(--rg222-white);
            border-radius: 24px;
            padding: 48px;
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .rg222-suite-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .rg222-suite-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .rg222-feature-list {
            list-style: none;
        }

        .rg222-feature-item {
            margin-bottom: 16px;
            padding-left: 24px;
            position: relative;
            font-size: 15px;
            color: var(--rg222-text-gray);
        }

        .rg222-feature-item::before {
            content: "•";
            color: var(--rg222-primary);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        /* AI Preview Section */
        .rg222-ai-showcase {
            background: #fff;
            padding: 96px 0;
            overflow: hidden;
        }

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

        .rg222-split-text {
            flex: 1;
            min-width: 300px;
        }

        .rg222-split-media {
            flex: 1.2;
            min-width: 300px;
            position: relative;
        }

        .rg222-split-media img {
            width: 100%;
            border-radius: 32px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.12);
        }

        /* Brand Spirit */
        .rg222-spirit {
            position: relative;
            padding: 120px 0;
            color: var(--rg222-white);
            text-align: center;
        }

        .rg222-spirit-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            filter: brightness(0.4);
        }

        .rg222-spirit-content {
            max-width: 700px;
            margin: 0 auto;
        }

        /* Articles / News Section */
        .rg222-news {
            padding: 96px 0;
            background: var(--rg222-bg-light);
        }

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

        .rg222-news-card {
            background: var(--rg222-white);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.03);
        }

        .rg222-news-info {
            padding: 24px;
        }

        .rg222-news-date {
            font-size: 13px;
            color: var(--rg222-text-gray);
            margin-bottom: 8px;
            display: block;
        }

        .rg222-news-title {
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--rg222-text-dark);
        }

        /* Footer */
        .rg222-footer {
            background: #ffffff;
            padding: 80px 0 40px;
            border-top: 1px solid #eee;
        }

        .rg222-footer-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            justify-content: space-between;
            margin-bottom: 64px;
        }

        .rg222-footer-brand {
            flex: 1.5;
            min-width: 240px;
        }

        .rg222-footer-title {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--rg222-primary);
        }

        .rg222-footer-links {
            flex: 1;
            min-width: 160px;
        }

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

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

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

        .rg222-footer-links a {
            text-decoration: none;
            color: var(--rg222-text-gray);
            font-size: 14px;
            transition: color 0.3s;
        }

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

        .rg222-footer-bottom {
            padding-top: 32px;
            border-top: 1px solid #f0f0f0;
            text-align: center;
            color: #999;
            font-size: 13px;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .rg222-nav-menu {
                gap: 16px;
            }
        }

        @media (max-width: 768px) {
            .rg222-nav-container {
                height: auto;
                padding: 16px 24px;
            }
            .rg222-nav-menu {
                width: 100%;
                margin-top: 16px;
                justify-content: center;
            }
            .rg222-hero-content {
                text-align: center;
                padding: 40px 0;
            }
            .rg222-btn-group {
                justify-content: center;
            }
            .rg222-grid-bento {
                grid-template-columns: 1fr;
            }
            .rg222-suite-card {
                padding: 32px;
            }
        }
    