
        :root {
            --ogazro-primary: #007aff;
            --ogazro-primary-dark: #005bb5;
            --ogazro-accent: #f97316;
            --ogazro-bg: #ffffff;
            --ogazro-bg-alt: #f8fafc;
            --ogazro-text: #1e293b;
            --ogazro-text-light: #64748b;
            --ogazro-glass: rgba(255, 255, 255, 0.8);
            --ogazro-radius: 16px;
            --ogazro-container-width: 1100px;
            --ogazro-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

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

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

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

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

        .ogazro-flex > * {
            min-width: 0;
        }

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

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

        .ogazro-logo img {
            height: 32px;
            width: auto;
            display: block;
        }

        .ogazro-nav-menu {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 8px;
        }

        .ogazro-nav-item a {
            text-decoration: none;
            color: var(--ogazro-text);
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 8px;
            transition: var(--ogazro-transition);
        }

        .ogazro-nav-item a:hover {
            background: rgba(0, 122, 255, 0.1);
            color: var(--ogazro-primary);
        }

        .ogazro-nav-item a.ogazro-active {
            color: var(--ogazro-primary);
            background: rgba(0, 122, 255, 0.05);
        }

        /* Hero Section - Asymmetric Layout */
        .ogazro-hero {
            padding: 160px 0 96px;
            background: radial-gradient(circle at 90% 10%, rgba(0, 122, 255, 0.05) 0%, transparent 40%);
            overflow: hidden;
        }

        .ogazro-hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .ogazro-hero-content {
            word-break: break-word;
        }

        .ogazro-hero-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #1e293b 0%, #007aff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .ogazro-hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--ogazro-text-light);
            margin-bottom: 40px;
            max-width: 540px;
        }

        .ogazro-hero-visual {
            position: relative;
        }

        .ogazro-capture-card {
            background: white;
            border-radius: var(--ogazro-radius);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
            padding: 24px;
            border: 1px solid rgba(0,0,0,0.05);
            transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
            transition: var(--ogazro-transition);
        }

        .ogazro-capture-card:hover {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        }

        .ogazro-status-bar {
            height: 6px;
            background: #eee;
            border-radius: 3px;
            margin: 16px 0;
            overflow: hidden;
        }

        .ogazro-status-fill {
            height: 100%;
            background: var(--ogazro-primary);
            width: 75%;
            border-radius: 3px;
        }

        /* Features Section */
        .ogazro-section {
            padding: 96px 0;
        }

        .ogazro-section-alt {
            background-color: var(--ogazro-bg-alt);
        }

        .ogazro-section-title {
            font-size: clamp(1.8rem, 4vw, 2.4rem);
            text-align: center;
            margin-bottom: 64px;
            font-weight: 700;
        }

        .ogazro-feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .ogazro-feature-card {
            background: white;
            padding: 40px;
            border-radius: var(--ogazro-radius);
            transition: var(--ogazro-transition);
            border: 1px solid transparent;
        }

        .ogazro-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border-color: rgba(0, 122, 255, 0.1);
        }

        .ogazro-feature-icon {
            width: 56px;
            height: 56px;
            background: rgba(0, 122, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 24px;
            color: var(--ogazro-primary);
        }

        .ogazro-feature-h3 {
            font-size: 1.4rem;
            margin-bottom: 16px;
            font-weight: 600;
        }

        /* Tutorial / Sniffing Process */
        .ogazro-sniff-steps {
            display: flex;
            flex-direction: column;
            gap: 48px;
            max-width: 800px;
            margin: 0 auto;
        }

        .ogazro-step-item {
            display: flex;
            gap: 32px;
            align-items: flex-start;
        }

        .ogazro-step-number {
            font-size: 3rem;
            font-weight: 900;
            color: rgba(0, 122, 255, 0.1);
            line-height: 1;
            flex-shrink: 0;
        }

        .ogazro-step-content h4 {
            font-size: 1.25rem;
            margin-bottom: 8px;
        }

        /* CTA Section */
        .ogazro-cta {
            background: var(--ogazro-primary);
            color: white;
            text-align: center;
            padding: 80px 24px;
            border-radius: 32px;
            margin-bottom: 96px;
        }

        .ogazro-btn {
            display: inline-block;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--ogazro-transition);
            cursor: pointer;
        }

        .ogazro-btn-white {
            background: white;
            color: var(--ogazro-primary);
        }

        .ogazro-btn-white:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        /* Dynamic Content */
        .ogazro-articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }

        .ogazro-article-item {
            border-bottom: 1px solid #eee;
            padding-bottom: 16px;
        }

        .ogazro-article-item a {
            color: var(--ogazro-text);
            text-decoration: none;
            font-weight: 500;
            transition: var(--ogazro-transition);
        }

        .ogazro-article-item a:hover {
            color: var(--ogazro-primary);
        }

        /* Footer */
        .ogazro-footer {
            background: #1e293b;
            color: #94a3b8;
            padding: 80px 0 40px;
        }

        .ogazro-footer-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 24px;
        }

        .ogazro-footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 48px;
            margin-bottom: 64px;
        }

        .ogazro-footer-title {
            color: white;
            font-weight: 600;
            margin-bottom: 24px;
        }

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

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

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

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

        .ogazro-footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 40px;
            text-align: center;
            font-size: 0.875rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .ogazro-hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .ogazro-hero-subtitle {
                margin: 0 auto 40px;
            }
            .ogazro-footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .ogazro-nav-menu {
                display: none; /* In a real app, a hamburger menu would go here */
            }
            .ogazro-footer-grid {
                grid-template-columns: 1fr;
            }
            .ogazro-hero-title {
                font-size: 2.2rem;
            }
        }
    