:root {
            --bg-color: #5d3b15;
            --text-main: #edd7cc;
            --accent: #f99d1e;
            --dot-inactive: #edd7cc;
            --nav-bg: #f99d1e;
            --font-editorial: 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;
            --transition-slow: 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
            --app-height: 100vh;

            --lp-yellow: #f99d1e;
            --lp-brown: #edd7cc;
            --lp-brown-light: #f4e6df;
            --bg-page: #5d3b15; 
            --grid-gray: rgba(237, 215, 204, 0.18);
            --font-chart: 'Inter', sans-serif;
        }

        *, *::before, *::after { box-sizing: border-box; }
        body, h1, h2, h3, p, blockquote { margin: 0; padding: 0; }
        
        body {
            font-family: var(--font-editorial);
            background-color: var(--bg-color);
            color: var(--text-main);
            overflow: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        #app {
            position: relative;
            width: 100vw;
            height: var(--app-height);
        }

        #slide-container {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--transition-slow);
            z-index: 1;
        }

        .slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 10;
        }

        .layout-cover {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
        }
        .layout-cover .cover-image {
            position: absolute;
            top: 0; right: 0; bottom: 0; left: 0;
            background-size: cover;
            background-position: center;
            z-index: 1;
        }
        .layout-cover .cover-content {
            position: absolute;
            bottom: 23%; 
            left: 8%;   
            z-index: 10;
        }
        .cover-content {
            transform: translateY(20px);
            opacity: 0;
            transition: all var(--transition-slow);
            transition-delay: 0.2s;
        }
        .slide.active .cover-content {
            transform: translateY(0);
            opacity: 1;
        }
        .cover-btn {
            display: inline-block;
            background: #5d3b15;
            color: #f99d1e;
            padding: 8px 30px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            border-radius: 4px;
            cursor: pointer;
            border: none;
            transition: background 0.3s;
        }
        .cover-btn:hover { background: #4a2f11; color: #f99d1e; }

        .layout-image-left {
            display: flex;
            width: 100%;
            height: 100%;
            padding: 30px;
            gap: 40px;
        }
        .media-pane {
            flex: 0 0 63%;
            height: 100%;
            position: relative;
        }
        .media-pane img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .text-pane {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center; 
            height: 100%;
            padding-right: 40px; 
            padding-bottom: 45px; 
            overflow: hidden; 
        }

        .text-scroll-area {
            max-height: 100%;
            overflow-y: auto;
            padding-right: 15px; 
            -webkit-overflow-scrolling: touch; 
        }
        
        .text-scroll-area::-webkit-scrollbar { width: 5px; }
        .text-scroll-area::-webkit-scrollbar-track { background: rgba(0,0,0,0.03); border-radius: 10px; }
        .text-scroll-area::-webkit-scrollbar-thumb { background-color: rgba(249, 157, 30, 0.5); border-radius: 10px; }
        .text-scroll-area::-webkit-scrollbar-thumb:hover { background-color: rgba(249, 157, 30, 0.85); }
        
        .slide-title {
            font-size: 20px; 
            font-weight: 700;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 20px;
            line-height: 1.4;
            letter-spacing: 0.5px;
        }
        .slide-text p {
            font-size: 14.5px;
            line-height: 1.6;
            margin-bottom: 16px;
            text-align: justify;
        }
        .slide-quote {
            margin-top: 24px;
            padding-left: 16px;
            border-left: 3px solid var(--accent);
            font-size: 15px;
            font-style: italic;
            font-weight: 500;
            line-height: 1.5;
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 50px;
            background: var(--nav-bg);
            border: none;
            color: var(--dot-inactive);
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s;
        }
        .nav-btn:hover { background: #edd7cc; }
        .nav-btn:disabled { opacity: 0; pointer-events: none; }
        .nav-btn.left { left: 0; border-radius: 0 4px 4px 0; }
        .nav-btn.right { right: 0; border-radius: 4px 0 0 4px; }

        .pagination {
            position: absolute;
            bottom: 30px;
            right: 30px;
            display: flex;
            gap: 6px;
            z-index: 100;
        }
        .page-dot {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background-color: rgba(237, 215, 204, 0.28);
            color: #edd7cc;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            border: none;
            padding: 0;
            transition: background 0.3s;
        }
        .page-dot.active { background-color: var(--accent); color: #5d3b15; }

        .layout-chart {
            width: 100%; height: 100%;
            background-color: var(--bg-page);
            display: flex; align-items: center; justify-content: center;
            font-family: var(--font-chart);
        }
        .interactive-container {
            width: 90%; max-width: 1000px;
            position: relative; background: #5d3b15;
            border-radius: 16px; padding: 40px 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
            border: 1px solid rgba(249, 157, 30, 0.35);
        }
        .main-header { text-align: center; margin-bottom: 40px; color: var(--lp-brown); }
        .title-primary { font-size: 28px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.5px; }
        .title-secondary { font-size: 36px; font-weight: 400; margin: 0; line-height: 1.2; }
        .title-secondary span { font-weight: 800; }
        .kpi-nav-wrapper { position: relative; margin-bottom: 20px; }
        .kpi-nav {
            display: flex; justify-content: space-between; gap: 16px;
            list-style: none; padding: 10px 10px 20px 10px; margin: 0;
            overflow-x: auto; scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
            position: relative; z-index: 10;
        }
        .kpi-nav::-webkit-scrollbar { height: 4px; }
        .kpi-nav::-webkit-scrollbar-track { background: rgba(237, 215, 204, 0.08); border-radius: 4px; }
        .kpi-nav::-webkit-scrollbar-thumb { background: var(--lp-yellow); border-radius: 4px; }
        .kpi-nav-item { flex-shrink: 0; }
        .kpi-btn {
            background: transparent; border: 2px solid rgba(237, 215, 204, 0.30);
            border-radius: 50%; width: 90px; height: 90px;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            cursor: pointer; transition: all 0.4s; position: relative; outline: none; padding: 8px;
        }
        .kpi-btn:hover { transform: translateY(-4px); border-color: var(--lp-yellow); box-shadow: 0 6px 15px rgba(249, 157, 30, 0.18); }
        .kpi-btn.active {
            background: var(--lp-yellow); border-color: var(--lp-brown);
            transform: scale(1.15); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22); z-index: 20;
        }
        .kpi-icon { width: 26px; height: 26px; fill: var(--lp-brown); margin-bottom: 6px; transition: all 0.4s; }
        .kpi-label { font-size: 10px; font-weight: 700; text-align: center; color: var(--lp-brown); line-height: 1.2; text-transform: uppercase; }
        .title-area { position: relative; display: flex; flex-direction: column; align-items: center; margin-bottom: 30px; margin-top: 35px; }
        .connector-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 5; overflow: visible; }
        #connector-path { fill: none; stroke: var(--lp-brown); stroke-width: 2; transition: d 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
        .active-title-bar {
            background-color: var(--lp-brown); color: var(--lp-yellow);
            padding: 12px 32px; border-radius: 30px; font-size: 16px; font-weight: 800;
            text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.20);
            position: relative; z-index: 10; text-align: center; min-width: 250px;
        }
        .chart-container { position: relative; height: 350px; width: 100%; padding: 10px 0; }

        
        .layout-timeline {
            width: 100%; height: 100%;
            overflow-y: auto; overflow-x: hidden; 
            background-color: #5d3b15;
        }
        
        #timeline-progress-bar { position: fixed; top: 0; left: 0; height: 4px; background: #f99d1e; width: 0%; z-index: 50; transition: width 0.1s ease; }
        .tabular-nums { font-variant-numeric: tabular-nums; }
        .timeline-node-content { transition: opacity 0.8s ease; }
        .timeline-node.inactive .timeline-node-content { opacity: 0.3; }
        .timeline-dot { transition: all 0.5s ease; }
        .timeline-node.active .timeline-dot { transform: scale(1.3); box-shadow: 0 0 20px rgba(249, 157, 30, 0.55); }
        .milestone-content {
            max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease; opacity: 0;
        }
        .milestone-content.expanded { max-height: 500px; opacity: 1; }
        .expand-icon { transition: transform 0.4s ease; }
        .expanded-trigger .expand-icon { transform: rotate(180deg); }
        #timeline-nav { display: none; } 
        @media (min-width: 768px) { #timeline-nav { display: block; } }
        #timeline-nav li { transition: all 0.3s ease; opacity: 0.4; cursor: pointer; }
        #timeline-nav li.active { opacity: 1; font-weight: 700; color: #f99d1e; transform: translateX(-5px); }
        .fade-up-soft { opacity: 0; transform: translateY(20px); }

        @media (max-width: 1024px) {
            .layout-image-left { flex-direction: column; padding: 20px; }
            .media-pane { flex: 0 0 45vh; width: 100%; }
            .text-pane { padding: 20px 0 35px 0; }
        }
        @media (max-width: 768px) {
            .nav-btn { display: none; }
            .page-dot { width: 22px; height: 22px; font-size: 10px; }
            .pagination { flex-wrap: wrap; justify-content: flex-end; width: 80%; bottom: 20px; right: 20px;}

            .title-secondary { font-size: 24px; }
            .kpi-btn { width: 70px; height: 70px; }
            .active-title-bar { font-size: 12px; padding: 10px 20px; }
            .chart-container { height: 250px; }
        }

        .layout-image-left,
        .text-pane {
            background: #5d3b15;
            color: #edd7cc;
        }
        .slide-text p { color: #edd7cc; }
        .slide-title { color: #f99d1e; }
        .slide-quote {
            color: #edd7cc;
            border-left-color: #f99d1e;
        }
        .nav-btn {
            background: #f99d1e;
            color: #5d3b15;
        }
        .nav-btn:hover {
            background: #edd7cc;
            color: #5d3b15;
        }
        .page-dot {
            border: 1px solid rgba(237, 215, 204, .42);
        }

        .layout-chart,
        .interactive-container {
            background: #5d3b15;
            color: #edd7cc;
        }
        .interactive-container {
            box-shadow: 0 16px 50px rgba(0, 0, 0, .20);
            border-color: rgba(249, 157, 30, .45);
        }
        .main-header { color: #edd7cc; }
        .main-header .title-secondary span { color: #f99d1e; }
        .kpi-nav::-webkit-scrollbar-track { background: rgba(237, 215, 204, .10); }
        .kpi-nav::-webkit-scrollbar-thumb { background: #f99d1e; }
        .kpi-btn {
            background: transparent;
            border-color: rgba(237, 215, 204, .38);
        }
        .kpi-btn:hover {
            border-color: #f99d1e;
            box-shadow: 0 6px 18px rgba(249, 157, 30, .18);
        }
        .kpi-btn.active {
            background: #f99d1e;
            border-color: #edd7cc;
            box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
        }
        .kpi-icon { fill: #edd7cc; }
        .kpi-label { color: #edd7cc; }
        .kpi-btn.active .kpi-icon { fill: #5d3b15; }
        .kpi-btn.active .kpi-label { color: #5d3b15; }
        #connector-path { stroke: #f99d1e; }
        .active-title-bar {
            background: #f99d1e;
            color: #5d3b15;
            box-shadow: 0 4px 15px rgba(0,0,0,.20);
        }

        .layout-timeline,
        #timeline-section,
        .layout-timeline footer {
            background: #5d3b15 !important;
            color: #edd7cc !important;
        }
        #timeline-section .text-lpbBrown,
        #timeline-section .text-gray-800,
        #timeline-section .text-gray-700,
        #timeline-section .text-gray-600,
        #timeline-section .text-gray-400 {
            color: #edd7cc !important;
        }
        #timeline-section .text-lpbGold { color: #f99d1e !important; }
        #timeline-section .bg-white,
        #timeline-section .bg-white\/90,
        #timeline-section .bg-white\/60 {
            background-color: rgba(237, 215, 204, .08) !important;
        }
        #timeline-section .border-white,
        #timeline-section .border-gray-100,
        #timeline-section .border-gray-200 {
            border-color: rgba(237, 215, 204, .28) !important;
        }
        #timeline-section .bg-gray-200 { background-color: rgba(237, 215, 204, .18) !important; }
        #timeline-section .bg-lpbBrown { background-color: #edd7cc !important; }
        #timeline-section .bg-lpbGold { background-color: #f99d1e !important; }
        #timeline-section .border-lpbBrown,
        #timeline-section .border-lpbBrown\/30 { border-color: rgba(237, 215, 204, .45) !important; }
        #timeline-section .border-lpbGold\/30 { border-color: rgba(249, 157, 30, .45) !important; }
        #timeline-section .hover\:bg-lpbBrown:hover {
            background-color: #f99d1e !important;
            color: #5d3b15 !important;
        }
        #timeline-nav > div {
            background: rgba(93, 59, 21, .92) !important;
            border-color: rgba(237, 215, 204, .18) !important;
        }
        #timeline-nav li.active { color: #f99d1e !important; }
        #timeline-progress-bar { background: #f99d1e !important; }
        .timeline-node.active .timeline-dot {
            box-shadow: 0 0 20px rgba(249, 157, 30, .55);
        }

        @media (max-width: 1024px) {
            .layout-image-left { background: #5d3b15; }
        }

        .layout-image-left {
            padding: 18px 20px;
            gap: 24px;
            align-items: center;
        }
        .media-pane {
            flex: 0 0 min(947px, 54vw);
            width: min(947px, 54vw);
            height: min(820px, calc(100vh - 36px));
            max-height: calc(100vh - 36px);
            align-self: center;
        }
        .media-pane img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .text-pane {
            flex: 1;
            height: calc(100vh - 36px);
            padding-right: 8px;
            padding-bottom: 0;
            justify-content: center;
        }
        .text-scroll-area {
            max-height: none;
            overflow-y: visible;
            padding-right: 0;
        }
        .slide-title {
            font-size: 22px;
            line-height: 1.25;
            margin-bottom: 14px;
        }
        .slide-text p {
            font-size: 22px;
            line-height: 1.3;
            margin-bottom: 10px;
        }
        .slide-quote {
            font-size: 22px;
            line-height: 1.3;
            margin-top: 14px;
        }

        .layout-chart {
            background: #FDFBF8 !important;
            color: #592c11 !important;
        }
        .layout-chart .interactive-container {
            background: #ffffff !important;
            color: #592c11 !important;
            box-shadow: 0 10px 40px rgba(89, 44, 17, 0.08) !important;
            border: 1px solid rgba(241, 185, 12, 0.3) !important;
        }
        .layout-chart .main-header { color: #592c11 !important; }
        .layout-chart .main-header .title-secondary span { color: inherit !important; }
        .layout-chart .kpi-nav::-webkit-scrollbar-track { background: rgba(89, 44, 17, 0.05) !important; }
        .layout-chart .kpi-nav::-webkit-scrollbar-thumb { background: #f1b90c !important; }
        .layout-chart .kpi-btn {
            background: #ffffff !important;
            border-color: rgba(89, 44, 17, 0.2) !important;
        }
        .layout-chart .kpi-btn:hover {
            border-color: #f1b90c !important;
            box-shadow: 0 6px 15px rgba(241, 185, 12, 0.2) !important;
        }
        .layout-chart .kpi-btn.active {
            background: #f1b90c !important;
            border-color: #592c11 !important;
            box-shadow: 0 8px 24px rgba(89, 44, 17, 0.25) !important;
        }
        .layout-chart .kpi-icon { fill: #592c11 !important; }
        .layout-chart .kpi-label {
            color: #592c11 !important;
            font-size: 8.5px;
            line-height: 1.05;
            max-width: 66px;
            display: block;
            overflow-wrap: anywhere;
            word-break: break-word;
        }
        .layout-chart .kpi-btn.active .kpi-icon,
        .layout-chart .kpi-btn.active .kpi-label { color: #592c11 !important; fill: #592c11 !important; }
        .layout-chart #connector-path { stroke: #592c11 !important; }
        .layout-chart .active-title-bar {
            background: #592c11 !important;
            color: #f1b90c !important;
            box-shadow: 0 4px 15px rgba(89, 44, 17, 0.3) !important;
        }

        .layout-timeline {
            background: #ffffff !important;
            color: #1f2937 !important;
        }
        #timeline-progress-bar { background: #EAA91D !important; }
        .timeline-node.active .timeline-dot { box-shadow: 0 0 20px rgba(234, 169, 29, 0.5) !important; }
        .layout-timeline #timeline-section,
        .layout-timeline footer {
            background: #ffffff !important;
            color: #1f2937 !important;
        }
        #timeline-section .text-lpbBrown { color: #4A2511 !important; }
        #timeline-section .text-lpbGold { color: #EAA91D !important; }
        #timeline-section .text-gray-800 { color: rgb(31 41 55) !important; }
        #timeline-section .text-gray-700 { color: rgb(55 65 81) !important; }
        #timeline-section .text-gray-600 { color: rgb(75 85 99) !important; }
        #timeline-section .text-gray-400 { color: rgb(156 163 175) !important; }
        #timeline-section .bg-white { background-color: #ffffff !important; }
        #timeline-section .bg-white\/90 { background-color: rgba(255,255,255,0.9) !important; }
        #timeline-section .bg-white\/60 { background-color: rgba(255,255,255,0.6) !important; }
        #timeline-section .border-white { border-color: #ffffff !important; }
        #timeline-section .border-gray-100 { border-color: rgb(243 244 246) !important; }
        #timeline-section .border-gray-200 { border-color: rgb(229 231 235) !important; }
        #timeline-section .bg-gray-200 { background-color: rgb(229 231 235) !important; }
        #timeline-section .bg-lpbBrown { background-color: #4A2511 !important; }
        #timeline-section .bg-lpbGold { background-color: #EAA91D !important; }
        #timeline-section .border-lpbBrown { border-color: #4A2511 !important; }
        #timeline-section .border-lpbBrown\/30 { border-color: rgba(74, 37, 17, 0.3) !important; }
        #timeline-section .border-lpbGold\/30 { border-color: rgba(234, 169, 29, 0.3) !important; }
        #timeline-section .hover\:bg-lpbBrown:hover {
            background-color: #4A2511 !important;
            color: #ffffff !important;
        }
        #timeline-nav > div {
            background: rgba(255,255,255,0.9) !important;
            border-color: rgb(243 244 246) !important;
        }
        #timeline-nav li.active { color: #EAA91D !important; }
        .layout-timeline h2.font-anton { line-height: 2 !important; }

        @media (max-width: 1440px) {
            .layout-image-left { padding: 16px 18px; gap: 18px; }
            .media-pane {
                flex: 0 0 min(947px, 52vw);
                width: min(947px, 52vw);
            }
            .slide-text p,
            .slide-quote,
            .slide-title { font-size: 20px; }
        }

        .layout-image-left {
            display: flex !important;
            flex-direction: row !important;
            width: 100%;
            height: 100%;
            padding: 24px 28px !important;
            gap: 28px !important;
            align-items: stretch !important;
        }
        .media-pane {
            flex: 0 0 48vw;
            width: 48vw;
            min-width: 250px;
            height: calc(100vh - 48px) !important;
            max-height: none !important;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .media-image-wrap {
            width: 100%;
            height: 100%;
            min-height: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .media-pane img {
            width: 100% !important;
            height: 100% !important;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain !important;
            object-position: center !important;
            display: block;
        }
        .text-pane {
            flex: 1 1 0 !important;
            min-width: 0;
            height: calc(100vh - 48px) !important;
            padding: 4px 10px 4px 0 !important;
            justify-content: center !important;
            overflow: visible !important;
        }
        .text-scroll-area {
            max-height: none !important;
            height: auto;
            overflow: visible !important;
            padding-right: 0 !important;
        }
        .slide-title {
            font-size: var(--editorial-title-size, 17.6px) !important;
            line-height: 1.25 !important;
            margin-bottom: 12px !important;
        }
        .slide-text p {
            font-size: var(--editorial-font-size, 17.6px) !important;
            line-height: 1.32 !important;
            margin-bottom: 10px !important;
        }
        .slide-quote {
            font-size: var(--editorial-font-size, 17.6px) !important;
            line-height: 1.3 !important;
            margin-top: 12px !important;
            padding-left: 14px !important;
        }

        .has-image-quote .quote-media {
            background: #050505;
            display: grid;
            grid-template-rows: minmax(0, 1fr) auto;
            align-items: stretch;
        }
        .has-image-quote .quote-media .media-image-wrap {
            min-height: 0;
            overflow: hidden;
        }
        .has-image-quote .quote-media img {
            object-fit: contain !important;
        }
        .image-quote {
            width: calc(100% - 72px);
            margin: 8px 36px 64px;
            padding: 2px 0 2px 16px;
            border-left: 3px solid #f99d1e;
            color: #f99d1e;
            font-size: var(--editorial-font-size, 17.6px);
            line-height: 1.32;
            font-style: italic;
            font-weight: 500;
        }

        .pagination.pager-on-media,
        .pagination.pager-on-interactive {
            left: var(--pager-left) !important;
            top: var(--pager-top) !important;
            right: auto !important;
            bottom: auto !important;
            width: auto !important;
            max-width: none !important;
            flex-wrap: nowrap !important;
            justify-content: center !important;
            transform: translate(-50%, -100%) scale(var(--pager-scale, 1));
            transform-origin: bottom center;
            gap: 6px;
        }
        .pagination.pager-on-media .page-dot,
        .pagination.pager-on-interactive .page-dot {
            box-shadow: 0 1px 4px rgba(0,0,0,.18);
        }

        .layout-timeline h2.font-anton {
            line-height: 1.5 !important;
        }
        #finale-counter {
            display: none !important;
        }

        @media (max-width: 1100px) {
            .layout-image-left {
                padding: 16px 18px !important;
                gap: 18px !important;
            }
            .media-pane,
            .text-pane {
                height: calc(100vh - 32px) !important;
            }
            .page-dot { width: 21px; height: 21px; font-size: 10px; }
        }

        
        .layout-design-image,
        .design-cover {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #6e361a;
            isolation: isolate;
        }

        .layout-design-image {
            background: #6e361a;
        }

        .design-cover {
            background: #477a8d;
        }
        .design-cover::before,
        .design-cover::after {
            content: "";
            position: absolute;
            pointer-events: none;
            z-index: 0;
        }
        .design-cover::before {
            top: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(90deg,
                #f8c80d 0%,
                #f3c510 12.5%,
                #37678c 25%,
                #055bbb 37.5%,
                #0564c3 50%,
                #0462c2 62.5%,
                #0461c1 75%,
                #035bbc 100%);
        }
        .design-cover::after {
            left: 0;
            right: 0;
            bottom: 0;
            height: 50%;
            background: linear-gradient(90deg,
                #cf7e10 0%,
                #cd7d11 12.5%,
                #484715 25%,
                #2d4944 37.5%,
                #394d2e 50%,
                #795f41 62.5%,
                #905b39 75%,
                #142015 100%);
        }

        @media (min-aspect-ratio: 32/15) {
            .design-cover::before {
                top: 0;
                bottom: 0;
                left: 0;
                right: auto;
                width: 50%;
                height: auto;
                background: linear-gradient(180deg,
                    #f5c30d 0%,
                    #eeb70e 20%,
                    #e6a80e 40%,
                    #de9a0f 60%,
                    #d78d0f 80%,
                    #d28210 100%);
            }
            .design-cover::after {
                top: 0;
                bottom: 0;
                left: auto;
                right: 0;
                width: 50%;
                height: auto;
                background: linear-gradient(180deg,
                    #025cbe 0%,
                    #1774cd 20%,
                    #769bd1 40%,
                    #506382 60%,
                    #2b506b 80%,
                    #122b14 100%);
            }
        }
        .design-artboard {
            position: relative;
            z-index: 1;
            width: min(100vw, calc(var(--app-height) * 2.1333333333));
            aspect-ratio: 1920 / 900;
            max-width: 100vw;
            max-height: var(--app-height);
            flex: 0 0 auto;
        }
        .design-page-image,
        .cover-design-image {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center center;
            user-select: none;
            -webkit-user-drag: none;
        }
        .design-cover .cover-content {
            bottom: 23%;
            left: 8%;
        }
        .pagination.pager-hidden {
            display: none !important;
        }
        
        #pagination {
            display: none !important;
        }

        
        .layout-chart .kpi-btn,
        .layout-chart .kpi-btn:hover,
        .layout-chart .kpi-btn:focus,
        .layout-chart .kpi-btn:focus-visible,
        .layout-chart .kpi-btn:active,
        .layout-chart .kpi-btn.active {
            box-shadow: none !important;
            outline: none !important;
            filter: none !important;
            -webkit-tap-highlight-color: transparent;
        }

        
        .artwork-pager {
            position: absolute;
            left: 27.8%;
            bottom: 5.5%;
            transform: translateX(-50%);
            z-index: 30;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(3px, 0.35vw, 7px);
            white-space: nowrap;
            pointer-events: auto;
        }
        .layout-chart {
            position: relative;
        }
        .layout-chart .interactive-artwork-pager {
            left: 50%;
            bottom: max(10px, 1.5vh);
            z-index: 120;
        }
        .layout-chart .interactive-artwork-pager .artwork-page-dot {
            width: clamp(24px, 2vw, 34px);
            height: clamp(24px, 2vw, 34px);
            font-size: clamp(10px, 0.8vw, 14px);
        }
        .artwork-page-dot {
            width: clamp(22px, 2.15vw, 40px);
            height: clamp(22px, 2.15vw, 40px);
            border: 0;
            border-radius: 50%;
            padding: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #f99d1e;
            color: #ffffff;
            font-family: 'Noto Sans', sans-serif;
            font-size: clamp(10px, 0.9vw, 16px);
            font-weight: 700;
            line-height: 1;
            cursor: pointer;
            box-shadow: none;
            outline: none;
            -webkit-tap-highlight-color: transparent;
            transition: transform .18s ease, background-color .18s ease;
        }
        .artwork-page-dot:hover {
            transform: translateY(-1px);
        }
        .artwork-page-dot.is-current {
            background: #5d3b15;
            color: #ffffff;
        }
        .artwork-page-dot:focus-visible {
            outline: 2px solid #ffffff;
            outline-offset: 2px;
        }
        @media (max-width: 700px) {
            .artwork-pager {
                gap: 2px;
                bottom: 6px;
            }
            .artwork-page-dot {
                width: clamp(17px, 5vw, 24px);
                height: clamp(17px, 5vw, 24px);
                font-size: clamp(8px, 2.2vw, 11px);
            }
        }

        html, body {
            width: 100%;
            height: 100%;
            margin: 0;
            overscroll-behavior: none;
        }
        #app,
        #slide-container,
        .slide {
            height: var(--app-height) !important;
            max-height: var(--app-height);
            min-height: 0;
        }
        .layout-design-image,
        .design-cover,
        .layout-chart,
        .layout-timeline {
            height: 100% !important;
            min-height: 0;
        }

        .timeline-node .timeline-year {
            color: #f99d1e !important;
            opacity: 1 !important;
            text-shadow: none !important;
        }
        .timeline-node.inactive .timeline-node-content {
            opacity: 1 !important;
        }
        .timeline-node.inactive .timeline-node-content > :not(.timeline-year) {
            opacity: 0.3;
        }

        .layout-chart {
            overflow-y: auto !important;
            overflow-x: hidden !important;
            overscroll-behavior-y: contain;
            -webkit-overflow-scrolling: touch;
            touch-action: pan-y;
            padding: clamp(8px, 2vh, 24px) 0;
        }
        .layout-chart .interactive-container {
            margin: auto;
            flex: 0 0 auto;
        }
        .layout-timeline {
            overflow-y: auto !important;
            overflow-x: hidden !important;
            overscroll-behavior-y: contain;
            -webkit-overflow-scrolling: touch;
            touch-action: pan-y;
            scrollbar-gutter: stable;
        }
        #timeline-section {
            min-height: max-content;
        }

        @media (max-height: 900px) {
            .layout-chart .interactive-container { padding: 24px 18px; }
            .layout-chart .main-header { margin-bottom: 18px; }
            .layout-chart .title-primary { font-size: 24px; }
            .layout-chart .title-secondary { font-size: 30px; }
            .layout-chart .kpi-nav { padding-bottom: 12px; }
            .layout-chart .kpi-btn { width: 76px; height: 76px; }
            .layout-chart .kpi-icon { width: 22px; height: 22px; margin-bottom: 4px; }
            .layout-chart .title-area { margin-top: 30px; margin-bottom: 14px; }
            .layout-chart .active-title-bar { padding: 9px 26px; }
            .layout-chart .chart-container { height: min(300px, 34vh); }
        }
        @media (max-height: 720px) {
            .layout-chart { padding: 6px 0; }
            .layout-chart .interactive-container { padding: 14px 14px; }
            .layout-chart .main-header { margin-bottom: 10px; }
            .layout-chart .title-primary { font-size: 20px; }
            .layout-chart .title-secondary { font-size: 24px; }
            .layout-chart .kpi-nav-wrapper { margin-bottom: 8px; }
            .layout-chart .kpi-nav { padding-top: 4px; padding-bottom: 8px; }
            .layout-chart .kpi-btn { width: 64px; height: 64px; padding: 5px; }
            .layout-chart .kpi-icon { width: 18px; height: 18px; margin-bottom: 3px; }
            .layout-chart .kpi-label { font-size: 7.5px; }
            .layout-chart .title-area { margin-top: 24px; margin-bottom: 8px; }
            .layout-chart .active-title-bar { padding: 7px 22px; font-size: 13px; }
            .layout-chart .chart-container { height: min(245px, 35vh); }
        }

        
        .design-cover {
            background: #0b5fb5 !important;
        }
        .design-cover::before,
        .design-cover::after {
            display: none !important;
            content: none !important;
        }
        .design-cover .cover-artboard {
            width: 100vw !important;
            height: var(--app-height) !important;
            max-width: none !important;
            max-height: none !important;
            aspect-ratio: auto !important;
            flex: 0 0 100% !important;
        }
        .design-cover .cover-design-image {
            width: 100% !important;
            height: 100% !important;
            object-fit: fill !important;
            object-position: center center !important;
        }

        .layout-chart .kpi-btn {
            width: 92px !important;
            height: 92px !important;
            min-width: 92px !important;
            min-height: 92px !important;
            box-sizing: border-box;
            overflow: hidden !important;
            padding: 8px 7px !important;
        }
        .layout-chart .kpi-icon {
            width: 24px !important;
            height: 24px !important;
            flex: 0 0 24px;
            margin-bottom: 5px !important;
        }
        .layout-chart .kpi-label,
        .layout-chart .kpi-label-fixed {
            box-sizing: border-box;
            width: 100%;
            max-width: 76px !important;
            margin: 0 auto;
            padding: 0 2px;
            font-size: 9.5px !important;
            line-height: 1.08 !important;
            letter-spacing: 0 !important;
            font-weight: 700 !important;
            text-align: center;
            text-transform: uppercase;
            white-space: normal !important;
            overflow: visible !important;
            overflow-wrap: normal !important;
            word-break: normal !important;
            hyphens: none !important;
        }
        .layout-chart .kpi-label-fixed .kpi-line {
            display: block;
            width: 100%;
            white-space: nowrap;
            margin: 0;
            padding: 0;
        }
        .layout-chart .kpi-nav {
            align-items: center;
        }

        @media (max-height: 900px), (max-width: 1180px) {
            .layout-chart .kpi-btn {
                width: 88px !important;
                height: 88px !important;
                min-width: 88px !important;
                min-height: 88px !important;
                padding: 7px 6px !important;
            }
            .layout-chart .kpi-icon {
                width: 22px !important;
                height: 22px !important;
                flex-basis: 22px;
                margin-bottom: 4px !important;
            }
            .layout-chart .kpi-label,
            .layout-chart .kpi-label-fixed {
                max-width: 72px !important;
                font-size: 9px !important;
                line-height: 1.08 !important;
            }
        }
        @media (max-height: 720px), (max-width: 900px) {
            .layout-chart .kpi-btn {
                width: 84px !important;
                height: 84px !important;
                min-width: 84px !important;
                min-height: 84px !important;
                padding: 6px 5px !important;
            }
            .layout-chart .kpi-icon {
                width: 20px !important;
                height: 20px !important;
                flex-basis: 20px;
                margin-bottom: 3px !important;
            }
            .layout-chart .kpi-label,
            .layout-chart .kpi-label-fixed {
                max-width: 70px !important;
                font-size: 8.7px !important;
                line-height: 1.08 !important;
            }
        }

        
        .layout-chart .kpi-nav {
            align-items: center !important;
            
            padding-top: 8px !important;
            padding-bottom: 10px !important;
        }
        .layout-chart .kpi-nav-item {
            flex-shrink: 0;
            padding-top: 10px;
            padding-bottom: 10px;
            overflow: visible;
        }
        .layout-chart .kpi-btn {
            transform-origin: center center !important;
        }
        .layout-chart .kpi-btn.active {
            transform: scale(1.15) !important;
        }
        @media (max-height: 720px), (max-width: 900px) {
            .layout-chart .kpi-nav {
                padding-top: 6px !important;
                padding-bottom: 8px !important;
            }
            .layout-chart .kpi-nav-item {
                padding-top: 9px;
                padding-bottom: 9px;
            }
        }

        .design-cover .cover-content {
            left: 14.5% !important;
        }
