
        :root {
            --lnok-primary: #BB2D3B;
            --lnok-dark: #1A1A1A;
            --lnok-accent: #E9ECEF;
            --lnok-text: #333333;
            --lnok-text-light: #666666;
            --lnok-bg-soft: #F4F7F6;
            --lnok-white: #FFFFFF;
            --lnok-code-bg: #282C34;
            --lnok-spacing-unit: 8px;
            --lnok-max-width: 1100px;
        }

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

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

        h1, h2, h3 {
            line-height: 1.2;
            color: var(--lnok-dark);
            white-space: normal;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        /* Navigation */
        .lnok-nav-wrapper {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
        }

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

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

        .lnok-logo img {
            height: 40px;
            display: block;
        }

        .lnok-menu {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 24px;
        }

        .lnok-menu-item a {
            font-size: 15px;
            font-weight: 500;
            color: var(--lnok-text-light);
            padding: 8px 0;
            position: relative;
        }

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

        .lnok-menu-item a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--lnok-primary);
        }

        /* Hero Section - Asymmetric Layout */
        .lnok-hero {
            padding: 160px 24px 96px;
            background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
            overflow: hidden;
        }

        .lnok-hero-inner {
            max-width: var(--lnok-max-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
        }

        .lnok-hero-content {
            flex: 1 1 500px;
            min-width: 0;
        }

        .lnok-hero-badge {
            display: inline-block;
            background: var(--lnok-primary);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            margin-bottom: 24px;
            font-weight: 600;
        }

        .lnok-hero-title {
            font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
            margin-bottom: 24px;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .lnok-hero-subtitle {
            font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
            color: var(--lnok-text-light);
            margin-bottom: 40px;
            max-width: 600px;
        }

        .lnok-hero-visual {
            flex: 1 1 400px;
            min-width: 0;
            background: var(--lnok-code-bg);
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            font-family: "Courier New", Courier, monospace;
            color: #abb2bf;
            position: relative;
        }

        .lnok-code-line {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            word-break: break-all;
        }

        .lnok-code-keyword { color: #c678dd; }
        .lnok-code-func { color: #61afef; }
        .lnok-code-str { color: #98c379; }

        /* Logic Engine Section */
        .lnok-engine-section {
            padding: 96px 24px;
            background-color: var(--lnok-white);
        }

        .lnok-section-header {
            max-width: 800px;
            margin: 0 auto 64px;
            text-align: center;
        }

        .lnok-section-title {
            font-size: clamp(2rem, 3vw + 0.5rem, 2.5rem);
            margin-bottom: 16px;
        }

        .lnok-grid {
            max-width: var(--lnok-max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .lnok-module-card {
            background: var(--lnok-bg-soft);
            padding: 40px;
            border-radius: 16px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid transparent;
            word-break: break-word;
        }

        .lnok-module-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border-color: var(--lnok-primary);
        }

        .lnok-module-name {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--lnok-primary);
        }

        .lnok-module-depth {
            font-size: 16px;
            margin-bottom: 24px;
            color: var(--lnok-text);
        }

        .lnok-module-usecase {
            font-size: 14px;
            color: var(--lnok-text-light);
            border-top: 1px solid #ddd;
            padding-top: 16px;
        }

        /* ROI Section */
        .lnok-roi-section {
            padding: 96px 24px;
            background: var(--lnok-dark);
            color: var(--lnok-white);
        }

        .lnok-roi-container {
            max-width: var(--lnok-max-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
        }

        .lnok-roi-info {
            flex: 1 1 400px;
            min-width: 0;
        }

        .lnok-roi-title {
            color: white;
            font-size: clamp(1.8rem, 3vw, 2.8rem);
            margin-bottom: 24px;
        }

        .lnok-roi-metrics {
            flex: 1 1 500px;
            min-width: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .lnok-metric-card {
            flex: 1 1 240px;
            min-width: 0;
            background: rgba(255,255,255,0.05);
            padding: 32px;
            border-left: 4px solid var(--lnok-primary);
        }

        .lnok-metric-label {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #aaa;
            margin-bottom: 12px;
        }

        .lnok-metric-value {
            font-size: 18px;
            font-weight: 600;
            line-height: 1.4;
        }

        /* CTA Section */
        .lnok-cta-section {
            padding: 96px 24px;
            text-align: center;
            background: var(--lnok-white);
        }

        .lnok-cta-btn {
            display: inline-block;
            padding: 18px 48px;
            background: var(--lnok-primary);
            color: white;
            font-weight: 700;
            border-radius: 4px;
            font-size: 18px;
            box-shadow: 0 10px 20px rgba(187, 45, 59, 0.2);
        }

        .lnok-cta-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(187, 45, 59, 0.3);
        }

        /* News/Dynamic Section */
        .lnok-dynamic-section {
            padding: 64px 24px;
            background: var(--lnok-bg-soft);
        }

        .lnok-dynamic-container {
            max-width: var(--lnok-max-width);
            margin: 0 auto;
        }

        /* Footer */
        .lnok-footer {
            background: #f8f9fa;
            padding: 64px 24px;
            border-top: 1px solid #eee;
        }

        .lnok-footer-inner {
            max-width: var(--lnok-max-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 48px;
        }

        .lnok-footer-brand {
            flex: 1 1 300px;
            min-width: 0;
        }

        .lnok-footer-brand h4 {
            font-size: 24px;
            margin-bottom: 16px;
            color: var(--lnok-primary);
        }

        .lnok-footer-links {
            flex: 2 1 600px;
            min-width: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
        }

        .lnok-footer-col {
            flex: 1 1 150px;
            min-width: 0;
        }

        .lnok-footer-col h5 {
            margin-bottom: 20px;
            font-size: 16px;
        }

        .lnok-footer-col ul {
            list-style: none;
        }

        .lnok-footer-col ul li {
            margin-bottom: 12px;
        }

        .lnok-footer-col ul li a {
            color: var(--lnok-text-light);
            font-size: 14px;
        }

        .lnok-footer-col ul li a:hover {
            color: var(--lnok-primary);
        }

        .lnok-copyright {
            max-width: var(--lnok-max-width);
            margin: 48px auto 0;
            padding-top: 24px;
            border-top: 1px solid #ddd;
            text-align: center;
            font-size: 13px;
            color: #999;
        }

        @media (max-width: 768px) {
            .lnok-menu {
                display: none; /* Simplification for mobile in this demo */
            }
            .lnok-hero-inner {
                flex-direction: column;
                text-align: center;
            }
            .lnok-hero-content, .lnok-hero-visual {
                flex: 1 1 100%;
            }
            .lnok-grid {
                grid-template-columns: 1fr;
            }
        }
    