
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --coral: #F2A09A; --coral-light: #FDF5F4; --coral-dark: #E88B84;
            --teal: #4CB5AE; --teal-dark: #3A9A94; --teal-light: #E8F6F5;
            --navy: #1A2B3C; --text-dark: #2D3748; --text-gray: #5A6B7D;
            --text-light: #8899AA; --white: #FFFFFF; --bg-cream: #FFFAF9; --border: #E8ECF1;
            --eye: #0369A1; --eye-dark: #075985; --eye-light: #F0F9FF; --eye-mid: #BAE6FD;
        }
        html { scroll-behavior: smooth; }
        body { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text-dark); line-height: 1.6; background: var(--white); -webkit-font-smoothing: antialiased; }
        h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; }

        /* HERO */
        .article-hero { padding: 140px 20px 60px; background: linear-gradient(170deg, var(--bg-cream) 0%, var(--white) 40%, var(--eye-light) 100%); text-align: center; position: relative; overflow: hidden; }
        .article-hero::before { content: ''; position: absolute; top: -50%; right: -15%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(3,105,161,0.07) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
        .article-hero::after { content: ''; position: absolute; bottom: -40%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(242,160,154,0.05) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
        .article-hero .breadcrumb { font-size: var(--fs-breadcrumb); color: var(--text-light); margin-bottom: 24px; letter-spacing: 0.5px; }
        .article-hero .breadcrumb a { color: var(--teal); text-decoration: none; }
        .article-hero .breadcrumb a:hover { text-decoration: underline; }
        .article-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--navy); max-width: 800px; margin: 0 auto 20px; line-height: 1.2; }
        .article-hero .article-meta { font-size: var(--fs-article-meta); color: var(--text-light); }
        .article-hero .article-meta span { display: inline-block; margin: 0 8px; }
        .tag { display: inline-block; background: var(--eye-light); color: var(--eye-dark); font-size: var(--fs-tag); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 20px; margin-bottom: 16px; }

        /* ARTICLE */
        .article-body { max-width: 720px; margin: 0 auto; padding: 48px 20px 80px; }
        .article-body p { font-family: 'Newsreader', Georgia, serif; font-size: var(--fs-article-body); line-height: 1.85; color: var(--text-gray); margin-bottom: 28px; }
        .article-body h2 { font-size: var(--fs-article-h2); color: var(--navy); margin: 48px 0 20px; padding-top: 24px; border-top: 1px solid var(--border); }
        .article-body h2:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
        .article-body strong { color: var(--text-dark); font-weight: 600; }

        /* FEATURE CARDS */
        .eye-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 36px 0; }
        .eye-feat { border-radius: 16px; padding: 28px 24px; position: relative; overflow: hidden; }
        .eye-feat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
        .eye-feat.device { background: var(--eye-light); border: 1px solid var(--eye-mid); }
        .eye-feat.device::before { background: var(--eye); }
        .eye-feat.tracking { background: #FFF7ED; border: 1px solid #FED7AA; }
        .eye-feat.tracking::before { background: #EA580C; }
        .eye-feat.inject { background: #F0FDF4; border: 1px solid #BBF7D0; }
        .eye-feat.inject::before { background: #16A34A; }
        .eye-feat.coding { background: #F5F3FF; border: 1px solid #DDD6FE; }
        .eye-feat.coding::before { background: #7C3AED; }
        .eye-feat-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
        .eye-feat.device .eye-feat-icon { background: rgba(3,105,161,0.15); }
        .eye-feat.tracking .eye-feat-icon { background: rgba(234,88,12,0.15); }
        .eye-feat.inject .eye-feat-icon { background: rgba(22,163,74,0.15); }
        .eye-feat.coding .eye-feat-icon { background: rgba(124,58,237,0.15); }
        .eye-feat-title { font-family: 'DM Sans', sans-serif; font-size: var(--fs-card-title); font-weight: 700; margin-bottom: 6px; color: var(--text-dark); }
        .eye-feat-desc { font-family: 'DM Sans', sans-serif; font-size: var(--fs-card-body); color: var(--text-gray); line-height: 1.5; }

        /* STAT BAR */
        .stat-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 36px 0; }
        .stat-item { background: var(--eye-light); border: 1px solid var(--eye-mid); border-radius: 14px; padding: 22px 18px; text-align: center; }
        .stat-num { font-family: 'DM Serif Display', Georgia, serif; font-size: var(--fs-panel-stat); color: var(--eye); margin-bottom: 4px; }
        .stat-label { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-label); color: var(--eye-dark); line-height: 1.4; font-weight: 500; }

        /* DEVICE INTEGRATION PANEL */
        .device-panel { margin: 36px 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
        .device-panel-header { background: linear-gradient(135deg, var(--eye-dark) 0%, #0C4A6E 100%); padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; }
        .device-panel-header .dp-left { display: flex; align-items: center; gap: 10px; }
        .device-panel-header .dp-icon { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; }
        .device-panel-header .dp-title { font-family: 'DM Sans', sans-serif; font-size: var(--fs-mock-header); font-weight: 600; color: #fff; }
        .device-panel-header .dp-badge { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-badge); text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 12px; }
        .device-panel-body { background: #FAFBFD; padding: 24px; }
        .dp-section { margin-bottom: 20px; }
        .dp-section:last-child { margin-bottom: 0; }
        .dp-section-head { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-title); text-transform: uppercase; letter-spacing: 1.2px; color: var(--eye-dark); font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
        .dp-section-head .dp-auto { font-size: var(--fs-panel-small); background: var(--eye-light); color: var(--eye); padding: 2px 6px; border-radius: 4px; letter-spacing: 0.5px; }
        .dp-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
        .dp-fields.triple { grid-template-columns: 1fr 1fr 1fr; }
        .dp-field { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; }
        .dp-field-label { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-title); text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; }
        .dp-field-value { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-body); font-weight: 600; color: var(--text-dark); }
        .dp-field-value.good { color: #16A34A; }
        .dp-field-value.warn { color: #EA580C; }
        .dp-field-value.critical { color: #DC2626; }
        .dp-content { font-family: 'Newsreader', Georgia, serif; font-size: var(--fs-panel-body); color: var(--text-gray); line-height: 1.7; background: var(--white); padding: 14px 18px; border-radius: 10px; border: 1px solid var(--border); }
        .dp-content .dp-highlight { border-bottom: 2px solid var(--eye-mid); }

        /* PER-EYE CLINICAL DASHBOARD */
        .pereye-panel { margin: 36px 0; border-radius: 16px; overflow: hidden; border: 1px solid #FED7AA; }
        .pereye-panel-header { background: linear-gradient(135deg, #C2410C 0%, #9A3412 100%); padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; }
        .pereye-panel-header .pe-left { display: flex; align-items: center; gap: 10px; }
        .pereye-panel-header .pe-icon { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; }
        .pereye-panel-header .pe-title { font-family: 'DM Sans', sans-serif; font-size: var(--fs-mock-header); font-weight: 600; color: #fff; }
        .pereye-panel-header .pe-badge { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-badge); text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 12px; }
        .pereye-panel-body { background: #FAFBFD; padding: 24px; }
        .pe-eyes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
        .pe-eye-box { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
        .pe-eye-label { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-title); text-transform: uppercase; letter-spacing: 1.2px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
        .pe-eye-label.od { color: #C2410C; }
        .pe-eye-label.os { color: #1E40AF; }
        .pe-eye-label .pe-lat { font-size: var(--fs-panel-small); padding: 2px 6px; border-radius: 4px; letter-spacing: 0.5px; }
        .pe-eye-label.od .pe-lat { background: #FFF7ED; color: #EA580C; }
        .pe-eye-label.os .pe-lat { background: #EFF6FF; color: #2563EB; }
        .pe-metric { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); }
        .pe-metric:last-child { border-bottom: none; }
        .pe-metric-name { font-family: 'DM Sans', sans-serif; font-size: var(--fs-pipeline-title); font-weight: 600; color: var(--text-dark); }
        .pe-metric-trend { font-family: 'JetBrains Mono', monospace; font-size: var(--fs-panel-small); color: var(--text-gray); }
        .pe-metric-trend .improving { color: #16A34A; font-weight: 600; }
        .pe-metric-trend .stable { color: #2563EB; font-weight: 600; }
        .pe-metric-trend .worsening { color: #DC2626; font-weight: 600; }
        .pe-summary { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
        .pe-summary-label { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-title); text-transform: uppercase; letter-spacing: 1.2px; color: #C2410C; font-weight: 700; margin-bottom: 10px; }
        .pe-summary-content { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-body); color: var(--text-gray); line-height: 1.6; }

        /* INJECTION TRACKER */
        .inject-panel { margin: 36px 0; border-radius: 16px; overflow: hidden; border: 1px solid #BBF7D0; }
        .inject-panel-header { background: linear-gradient(135deg, #15803D 0%, #166534 100%); padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; }
        .inject-panel-header .inj-left { display: flex; align-items: center; gap: 10px; }
        .inject-panel-header .inj-icon { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; }
        .inject-panel-header .inj-title { font-family: 'DM Sans', sans-serif; font-size: var(--fs-mock-header); font-weight: 600; color: #fff; }
        .inject-panel-header .inj-badge { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-badge); text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 12px; }
        .inject-panel-body { background: #FAFBFD; padding: 24px; }
        .inj-eye-section { margin-bottom: 20px; }
        .inj-eye-section:last-of-type { margin-bottom: 0; }
        .inj-eye-label { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-title); text-transform: uppercase; letter-spacing: 1.2px; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
        .inj-eye-label.od { color: #C2410C; }
        .inj-eye-label.os { color: #1E40AF; }
        .inj-eye-label .inj-auto { font-size: var(--fs-panel-small); padding: 2px 6px; border-radius: 4px; letter-spacing: 0.5px; }
        .inj-eye-label.od .inj-auto { background: #FFF7ED; color: #EA580C; }
        .inj-eye-label.os .inj-auto { background: #EFF6FF; color: #2563EB; }
        .inj-row { display: flex; align-items: center; gap: 12px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; margin-bottom: 8px; }
        .inj-row:last-child { margin-bottom: 0; }
        .inj-date { font-family: 'JetBrains Mono', monospace; font-size: var(--fs-pipeline-num); color: var(--text-light); flex: 0 0 72px; }
        .inj-drug { font-family: 'DM Sans', sans-serif; font-size: var(--fs-mock-row); font-weight: 600; color: var(--text-dark); flex: 1; }
        .inj-data { font-family: 'JetBrains Mono', monospace; font-size: var(--fs-pipeline-num); color: var(--text-gray); flex: 0 0 auto; text-align: right; }
        .inj-interval-tag { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-badge); padding: 3px 10px; border-radius: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; flex: 0 0 auto; }
        .inj-interval-tag.extended { background: #F0FDF4; color: #16A34A; }
        .inj-interval-tag.maintained { background: #FFF7ED; color: #EA580C; }
        .inj-interval-tag.shortened { background: #FEF2F2; color: #DC2626; }
        .inj-schedule { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 16px; margin-top: 16px; }
        .inj-schedule-label { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-title); text-transform: uppercase; letter-spacing: 1.2px; color: #15803D; font-weight: 700; margin-bottom: 10px; }
        .inj-schedule-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
        .inj-schedule-item { text-align: center; background: #F0FDF4; border-radius: 8px; padding: 10px 8px; }
        .inj-schedule-val { font-family: 'JetBrains Mono', monospace; font-size: var(--fs-panel-body); font-weight: 700; color: #15803D; }
        .inj-schedule-desc { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-small); color: var(--text-gray); margin-top: 4px; line-height: 1.3; }

        /* CODING FLOW */
        .coding-flow { margin: 36px 0; padding: 28px 24px; background: linear-gradient(135deg, #F5F3FF 0%, var(--eye-light) 50%, #EFF6FF 100%); border-radius: 16px; border: 1px solid #DDD6FE; }
        .coding-flow-label { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-title); text-transform: uppercase; letter-spacing: 1.5px; color: #7C3AED; font-weight: 700; text-align: center; margin-bottom: 20px; }
        .coding-scenario { background: var(--white); border-radius: 12px; padding: 18px 20px; margin-bottom: 12px; border: 1px solid var(--border); }
        .coding-scenario:last-of-type { margin-bottom: 0; }
        .coding-scenario-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
        .coding-scenario-title { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-heading); font-weight: 700; color: var(--text-dark); }
        .coding-scenario-type { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-badge); text-transform: uppercase; letter-spacing: 1px; padding: 3px 10px; border-radius: 10px; font-weight: 600; }
        .coding-scenario-type.eyeem { background: var(--eye-light); color: var(--eye-dark); }
        .coding-scenario-type.global { background: #F0FDF4; color: #16A34A; }
        .coding-scenario-type.injection { background: #FFF7ED; color: #EA580C; }
        .coding-scenario-type.modifier { background: #F5F3FF; color: #7C3AED; }
        .coding-steps { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
        .coding-step { font-family: 'JetBrains Mono', monospace; font-size: var(--fs-panel-small); padding: 4px 10px; border-radius: 6px; font-weight: 500; }
        .coding-step.code { background: var(--eye-light); color: var(--eye-dark); }
        .coding-step.modifier { background: #EFF6FF; color: #2563EB; }
        .coding-step.component { background: #F5F3FF; color: #7C3AED; }
        .coding-arrow { font-size: var(--fs-coding-arrow); color: var(--text-light); }
        .coding-note { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-small); color: var(--text-light); margin-top: 8px; font-style: italic; }

        /* DOTPHRASE DEMO */
        .dotphrase-demo { margin: 36px 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
        .dotphrase-demo-header { background: var(--navy); padding: 14px 20px; display: flex; align-items: center; gap: 8px; }
        .dotphrase-demo-header .dot { width: 10px; height: 10px; border-radius: 50%; }
        .dotphrase-demo-header .dot.r { background: #FF5F57; }
        .dotphrase-demo-header .dot.y { background: #FEBC2E; }
        .dotphrase-demo-header .dot.g { background: #28C840; }
        .dotphrase-demo-header .title { font-family: 'DM Sans', sans-serif; font-size: var(--fs-mock-nav); color: rgba(255,255,255,0.5); margin-left: 8px; }
        .dotphrase-demo-body { background: #1E293B; padding: 24px; }
        .dotphrase-line { font-family: 'JetBrains Mono', 'SF Mono', monospace; font-size: var(--fs-dot-body); line-height: 2; color: rgba(255,255,255,0.55); display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
        .dotphrase-line .label { color: rgba(255,255,255,0.3); min-width: 100px; display: inline-block; font-size: var(--fs-dot-cmd); }
        .dotphrase-line .cmd { color: #89DDFF; font-weight: 500; }
        .dotphrase-line .arg { color: #82AAFF; }
        .dotphrase-line .cmt { color: rgba(255,255,255,0.25); font-style: italic; font-size: var(--fs-panel-small); margin-left: 12px; }
        .dotphrase-line .result { color: #C3E88D; }
        .dotphrase-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 12px 0; }
        .dotphrase-section-label { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-small); text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.2); margin-bottom: 6px; padding-left: 100px; }

        /* AMBIENT TEMPLATE */
        .template-preview { margin: 36px 0; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
        .template-preview-header { background: linear-gradient(135deg, var(--eye-dark) 0%, #0C4A6E 100%); padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; }
        .template-preview-header .tp-left { display: flex; align-items: center; gap: 10px; }
        .template-preview-header .tp-icon { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; }
        .template-preview-header .tp-title { font-family: 'DM Sans', sans-serif; font-size: var(--fs-mock-header); font-weight: 600; color: #fff; }
        .template-preview-header .tp-badge { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-badge); text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 12px; }
        .template-preview-body { background: #FAFBFD; padding: 24px; }
        .tp-section { margin-bottom: 20px; }
        .tp-section:last-child { margin-bottom: 0; }
        .tp-section-head { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-title); text-transform: uppercase; letter-spacing: 1.2px; color: var(--eye-dark); font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
        .tp-section-head .tp-auto { font-size: var(--fs-panel-small); background: var(--eye-light); color: var(--eye); padding: 2px 6px; border-radius: 4px; letter-spacing: 0.5px; }
        .tp-content { font-family: 'Newsreader', Georgia, serif; font-size: var(--fs-panel-body); color: var(--text-gray); line-height: 1.7; background: var(--white); padding: 14px 18px; border-radius: 10px; border: 1px solid var(--border); }
        .tp-content .tp-ai { background: linear-gradient(135deg, var(--eye-light) 0%, #E0F2FE 100%); padding: 2px 6px; border-radius: 4px; color: var(--eye-dark); font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-small); font-weight: 500; }
        .tp-content .tp-highlight { border-bottom: 2px solid var(--eye-mid); }
        .tp-procedure { background: var(--eye-light); border: 1px solid var(--eye-mid); border-radius: 10px; padding: 14px 18px; margin-top: 8px; }
        .tp-procedure-title { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-heading); font-weight: 600; color: var(--eye-dark); margin-bottom: 6px; }
        .tp-procedure-body { font-family: 'Newsreader', Georgia, serif; font-size: var(--fs-panel-body); color: var(--text-gray); line-height: 1.65; }

        /* PROCEDURE PIPELINE */
        .procedure-pipeline { margin: 36px 0; padding: 32px 24px; background: linear-gradient(135deg, var(--eye-light) 0%, #E0F2FE 50%, #EFF6FF 100%); border-radius: 16px; border: 1px solid var(--eye-mid); }
        .procedure-pipeline-label { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-title); text-transform: uppercase; letter-spacing: 1.5px; color: var(--eye-dark); font-weight: 700; text-align: center; margin-bottom: 24px; }
        .pipeline-steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; }
        .pipeline-step { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; min-width: 0; }
        .pipeline-step-num { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'DM Sans', sans-serif; font-size: var(--fs-pipeline-num); font-weight: 700; color: #fff; margin-bottom: 10px; }
        .pipeline-step:nth-child(1) .pipeline-step-num { background: var(--eye); }
        .pipeline-step:nth-child(3) .pipeline-step-num { background: #EA580C; }
        .pipeline-step:nth-child(5) .pipeline-step-num { background: #2563EB; }
        .pipeline-step:nth-child(7) .pipeline-step-num { background: #16A34A; }
        .pipeline-step:nth-child(9) .pipeline-step-num { background: #7C3AED; }
        .pipeline-step-title { font-family: 'DM Sans', sans-serif; font-size: var(--fs-pipeline-title); font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
        .pipeline-step-sub { font-family: 'DM Sans', sans-serif; font-size: var(--fs-pipeline-sub); color: var(--text-gray); max-width: 110px; line-height: 1.35; }
        .pipeline-arrow { flex: 0 0 24px; width: 24px; display: flex; align-items: center; justify-content: center; padding-top: 6px; }
        .pipeline-arrow svg { width: 20px; height: 20px; stroke: var(--eye); stroke-width: 2; fill: none; opacity: 0.45; }

        /* COMPARISON FLOW */
        .auto-flow { margin: 36px 0; padding: 32px 20px; background: linear-gradient(135deg, #F0F9FF 0%, var(--eye-light) 100%); border-radius: 16px; border: 1px solid var(--eye-mid); }
        .auto-flow-label { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-title); text-transform: uppercase; letter-spacing: 1.5px; color: var(--eye-dark); font-weight: 700; text-align: center; margin-bottom: 24px; }
        .auto-flow-cols { display: flex; gap: 32px; align-items: stretch; }
        .auto-flow-col { flex: 1; min-width: 0; }
        .auto-flow-col-label { font-family: 'DM Sans', sans-serif; font-size: var(--fs-panel-title); text-transform: uppercase; letter-spacing: 1.2px; font-weight: 700; text-align: center; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid; }
        .auto-flow-col.manual .auto-flow-col-label { color: #B91C1C; border-color: #FECACA; }
        .auto-flow-col.hero .auto-flow-col-label { color: var(--eye-dark); border-color: var(--eye-mid); }
        .auto-step { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
        .auto-step-num { flex: 0 0 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'DM Sans', sans-serif; font-size: var(--fs-flow-num); font-weight: 700; color: #fff; margin-top: 1px; }
        .auto-flow-col.manual .auto-step-num { background: #EF4444; }
        .auto-flow-col.hero .auto-step-num { background: var(--eye); }
        .auto-step-text { font-family: 'DM Sans', sans-serif; font-size: var(--fs-flow-text); color: var(--text-gray); line-height: 1.45; }
        .auto-step-text strong { color: var(--text-dark); }
        .auto-flow-col.manual .auto-step-text { color: #7F1D1D; }
        .auto-flow-col.manual .auto-step-text strong { color: #991B1B; }
        .auto-flow-divider { flex: 0 0 1px; background: var(--border); margin: 24px 0 0; }
        .auto-flow-verdict { display: flex; gap: 20px; margin-top: 20px; padding-top: 16px; border-top: 1px dashed var(--eye-mid); }
        .verdict-box { flex: 1; text-align: center; font-family: 'DM Sans', sans-serif; padding: 12px; border-radius: 10px; }
        .verdict-box.bad { background: #FEF2F2; color: #991B1B; font-size: var(--fs-verdict); font-weight: 600; }
        .verdict-box.good { background: var(--eye-light); color: var(--eye-dark); font-size: var(--fs-verdict); font-weight: 600; }

        /* CALLOUT */
        .callout { background: var(--eye-light); border-left: 4px solid var(--eye); padding: 20px 24px; border-radius: 0 10px 10px 0; margin: 32px 0; }
        .callout.teal { background: var(--teal-light); border-left-color: var(--teal); }
        .callout.blue { background: #EFF6FF; border-left-color: #2563EB; }
        .callout.green { background: #F0FDF4; border-left-color: #16A34A; }
        .callout p { font-family: 'DM Sans', sans-serif !important; font-size: var(--fs-callout) !important; color: var(--text-dark) !important; margin-bottom: 0 !important; line-height: 1.65 !important; }
        .callout strong { color: var(--eye-dark); }
        .callout.teal strong { color: var(--teal-dark); }
        .callout.blue strong { color: #1E40AF; }
        .callout.green strong { color: #15803D; }

        /* CTA */
        .article-cta { background: linear-gradient(135deg, var(--navy) 0%, #2a4560 100%); border-radius: 16px; padding: 40px 36px; margin: 48px 0 0; text-align: center; }
        .article-cta h3 { color: #fff; font-size: var(--fs-cta-heading); margin-bottom: 12px; }
        .article-cta p { color: rgba(255,255,255,0.65) !important; font-family: 'DM Sans', sans-serif !important; font-size: var(--fs-cta-body) !important; margin-bottom: 24px !important; }
        .article-cta .btn { display: inline-block; background: var(--teal); color: #fff; padding: 14px 32px; border-radius: 10px; font-weight: 600; text-decoration: none; font-size: var(--fs-btn); transition: background 0.2s, transform 0.15s; }
        .article-cta .btn:hover { background: var(--teal-dark); transform: translateY(-1px); }

        /* RESPONSIVE */
        @media (max-width: 600px) {
            .article-hero { padding: 120px 16px 40px; }
            .article-body { padding: 32px 16px 60px; }
            .article-body p { font-size: var(--fs-article-body-sm); }
            .eye-features { grid-template-columns: 1fr; }
            .stat-bar { grid-template-columns: 1fr; }
            .dp-fields { grid-template-columns: 1fr; }
            .dp-fields.triple { grid-template-columns: 1fr; }
            .pe-eyes { grid-template-columns: 1fr; }
            .inj-row { flex-wrap: wrap; gap: 8px; }
            .inj-schedule-grid { grid-template-columns: 1fr; }
            .pipeline-steps { flex-direction: column; align-items: center; }
            .pipeline-arrow { transform: rotate(90deg); padding: 0; }
            .pipeline-step { flex-direction: row; text-align: left; gap: 12px; width: 100%; }
            .pipeline-step-num { flex-shrink: 0; }
            .pipeline-step-sub { max-width: none; }
            .auto-flow-cols { flex-direction: column; }
            .auto-flow-divider { height: 1px; width: 100%; margin: 12px 0; }
            .coding-scenario-head { flex-direction: column; align-items: flex-start; gap: 6px; }
            .coding-steps { gap: 6px; }
            .dotphrase-line .label { min-width: 70px; font-size: var(--fs-dot-label-sm); }
            .dotphrase-line { font-size: var(--fs-dot-body-sm); }
            .article-cta { padding: 28px 20px; }
        }
        @media (prefers-reduced-motion: reduce) {
            * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
        }
    