/* 字體大小：讓 1rem = 14.4px（90%） */
        html { font-size: 90%; }

        /* 增強視覺效果的 CSS */

        /* 漸層背景動畫 */
        .animated-gradient {
            background: linear-gradient(-45deg, #0f766e, #14b8a6, #0d9488, #134e4a);
            background-size: 400% 400%;
            animation: gradient 15s ease infinite;
        }

        @keyframes gradient {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        /* 玻璃擬態卡片 */
        .glass-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
        }

        /* 卡片懸停效果 */
        .card-hover {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        /* 滾動淡入動畫 */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* 數字計數器增強 */
        .counter {
            font-family: 'Noto Sans TC', sans-serif;
            font-weight: 700;
        }

        /* 改善文字對比度 */
        .text-contrast-high {
            color: #1f2937 !important;
        }

        .text-contrast-medium {
            color: #374151 !important;
        }

        /* 脈衝光暈效果 */
        @keyframes pulse-glow {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(20, 184, 166, 0.4);
            }

            50% {
                box-shadow: 0 0 30px rgba(20, 184, 166, 0.6);
            }
        }

        .pulse-glow {
            animation: pulse-glow 2s ease-in-out infinite;
        }

        /* 浮動動畫 */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .float-animation {
            animation: float 6s ease-in-out infinite;
        }

        /* 粒子背景 */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            animation: rise 12s infinite ease-in;
        }

        @keyframes rise {
            0% {
                bottom: -10%;
                opacity: 0;
            }

            50% {
                opacity: 0.8;
            }

            100% {
                bottom: 110%;
                opacity: 0;
            }
        }

        /* 漸層邊框效果 */
        .gradient-border {
            position: relative;
            background: white;
            border-radius: 1rem;
        }

        .gradient-border::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 1rem;
            padding: 3px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

        /* 進度環 */
        .progress-ring {
            transform: rotate(-90deg);
        }

        .progress-ring-circle {
            transition: stroke-dashoffset 0.5s ease;
        }

        /* 響應式調整 */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem !important;
            }
        }

        /* 減少動畫（無障礙） */
        @media (prefers-reduced-motion: reduce) {

            .animated-gradient,
            .float-animation,
            .particle,
            .pulse-glow,
            .fade-in-up {
                animation: none !important;
            }

            .fade-in-up {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== 區塊滾動漸入效果 ===== */
        .content-box {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .content-box.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== 核心架構互動按鈕 ===== */
        .core-framework-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, #0d9488, #0f766e);
            color: white;
            padding: 1.1rem 3rem;
            border-radius: 9999px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            border: none;
            box-shadow: 0 6px 24px rgba(13, 148, 136, 0.4);
            transition: all 0.3s ease;
            font-family: 'Noto Sans TC', sans-serif;
            letter-spacing: 0.025em;
        }
        .core-framework-btn:hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 12px 35px rgba(13, 148, 136, 0.55);
        }
        .core-framework-btn.btn-active {
            background: linear-gradient(135deg, #0f766e, #064e3b);
        }
        .core-framework-btn .btn-arrow {
            display: inline-block;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-size: 0.9rem;
        }
        .core-framework-btn.btn-active .btn-arrow {
            transform: rotate(180deg);
        }

        /* 圈圈容器（展開/收合動畫） */
        .circles-outer-container {
            overflow: hidden;
            max-height: 0;
            opacity: 0;
            transition: max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
        }
        .circles-outer-container.circles-open {
            max-height: 350px;
            opacity: 1;
        }

        /* 圈圈排列 */
        .circles-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            padding: 2rem 1rem 1rem;
        }

        /* 單個圈圈 */
        .framework-circle {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0d9488, #14b8a6);
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            cursor: pointer;
            padding: 1rem;
            box-shadow: 0 6px 24px rgba(13, 148, 136, 0.35);
            /* 初始：縮小隱藏 */
            opacity: 0;
            transform: scale(0);
            /* 各種狀態的 transition */
            transition-property: opacity, transform, background, box-shadow;
            transition-duration: 0.5s, 0.5s, 0.3s, 0.3s;
            transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .framework-circle.circle-visible {
            opacity: 1;
            transform: scale(1);
        }
        .framework-circle.circle-active {
            background: linear-gradient(135deg, #1d4ed8, #2563eb) !important;
            transform: scale(1.12) !important;
            box-shadow: 0 12px 35px rgba(37, 99, 235, 0.55) !important;
        }
        .framework-circle:hover:not(.circle-active) {
            transform: scale(1.08);
            box-shadow: 0 10px 30px rgba(13, 148, 136, 0.5);
        }
        .circle-number {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 0.35rem;
        }
        .circle-text {
            font-size: 0.78rem;
            font-weight: 600;
            line-height: 1.35;
        }

        /* 詳細內容面板 */
        .framework-detail-panel {
            overflow: hidden;
            max-height: 0;
            opacity: 0;
            transition: max-height 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
            margin-top: 0;
        }
        .framework-detail-panel.detail-visible {
            max-height: 800px;
            opacity: 1;
            margin-top: 2rem;
        }
        .framework-detail-inner {
            border-radius: 1rem;
            padding: 2rem;
            animation: slideInDetail 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }
        @keyframes slideInDetail {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* 響應式圓圈 */
        @media (max-width: 640px) {
            .framework-circle {
                width: 108px;
                height: 108px;
            }
            .circle-number { font-size: 1.5rem; }
            .circle-text { font-size: 0.68rem; }
            .circles-wrapper { gap: 0.75rem; padding: 1.5rem 0.5rem 0.5rem; }
            .circles-outer-container.circles-open { max-height: 500px; }
        }

        /* ===== Hero Banner (大地方計畫 風格) ===== */
        .hero-banner {
            position: relative;
            overflow: hidden;
            padding: 3rem 0;
            min-height: 50vh;
            display: flex;
            align-items: center;
        }
        .hero-banner-bg {
            position: absolute;
            inset: 0;
            background: url('../../assets/images/sustainable-finance/BANNER.jpg') center/cover no-repeat;
            z-index: 0;
        }
        .hero-banner-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg, rgba(0,40,32,0.82) 0%, rgba(0,60,48,0.70) 45%, rgba(0,70,55,0.35) 100%);
            z-index: 1;
        }
        .hero-banner-content {
            position: relative;
            z-index: 2;
            max-width: 680px;
        }
        .hero-eyebrow-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: rgba(160,240,210,0.9);
            margin-bottom: 1.4rem;
            font-family: 'Noto Sans TC', sans-serif;
        }
        .hero-eyebrow-tag::before {
            content: '';
            display: inline-block;
            width: 30px;
            height: 1px;
            background: rgba(160,240,210,0.7);
        }
        .hero-main-h1 {
            font-family: 'Noto Serif TC', serif;
            font-size: clamp(3rem, 5.5vw, 5.2rem);
            font-weight: 700;
            color: #fff;
            line-height: 1.18;
            margin-bottom: 0.4rem;
            letter-spacing: 0.07em;
            text-shadow: 0 4px 28px rgba(0,0,0,0.3);
        }
        .hero-sub-h2 {
            font-family: 'Noto Sans TC', sans-serif;
            font-size: clamp(0.95rem, 1.7vw, 1.25rem);
            font-weight: 300;
            color: rgba(195,255,235,0.85);
            letter-spacing: 0.13em;
            margin-bottom: 1.8rem;
        }
        .hero-rule {
            width: 44px;
            height: 2px;
            background: linear-gradient(90deg, rgba(100,220,180,0.85), transparent);
            margin-bottom: 1.6rem;
        }
        .hero-desc {
            font-family: 'Noto Sans TC', sans-serif;
            font-size: 0.97rem;
            font-weight: 300;
            color: rgba(215,255,242,0.75);
            line-height: 1.95;
            max-width: 500px;
        }

/* ---- 基礎結構 ---- */
        .tp-section {
            position: relative;
        }
        .tp-dark  { background: #071a14; }
        .tp-light { background: #f0fbf7; }


        /* SVG 背景 */
        .tp-bg-svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        /* 左右分欄 */
        .tp-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 60vh;
            position: relative;
            z-index: 1;
        }
        .tp-split-reverse {
            direction: rtl;
        }
        .tp-split-reverse > * {
            direction: ltr;
        }
        .tp-pane {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .tp-pane-text {
            padding: 4rem 5rem 4rem 8rem;
        }
        .tp-pane-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem 4rem 3rem 3rem;
        }

        /* 共用排版元件 */
        .tp-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: rgba(160,240,210,0.8);
            font-family: 'Noto Sans TC', sans-serif;
        }
        .tp-eyebrow::before {
            content: '';
            display: inline-block;
            width: 28px;
            height: 1px;
            background: currentColor;
            opacity: 0.7;
        }
        .tp-rule {
            width: 48px;
            height: 2px;
            background: linear-gradient(to right, #0d9488, transparent);
            margin: 1.6rem 0;
            border-radius: 2px;
        }
        .tp-body {
            font-family: 'Noto Sans TC', sans-serif;
            font-size: 1.15rem;
            line-height: 1.9;
            font-weight: 300;
        }

        /* 三大關鍵點 */
        .tp-key-points {
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
        }
        .tp-kp {
            display: flex;
            align-items: center;
            gap: 1.1rem;
            padding: 0.9rem 1.2rem;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(94,234,212,0.12);
            border-radius: 0.6rem;
            transition: background 0.3s ease;
        }
        .tp-kp:hover { background: rgba(255,255,255,0.07); }
        .tp-kp-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: #e2fdf7;
            letter-spacing: 0.03em;
        }
        .tp-kp-desc {
            font-size: 0.8rem;
            color: rgba(180,230,220,0.65);
            margin-top: 0.15rem;
        }

        /* ---- S1 右側字卡 ---- */
        .tp-why-cards {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            width: 100%;
        }
        .tp-why-card {
            background: rgba(20,184,166,0.07);
            border: 1px solid rgba(94,234,212,0.2);
            border-radius: 1rem;
            padding: 1.2rem 1.6rem;
            transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s ease;
        }
        .tp-why-card:hover {
            background: rgba(20,184,166,0.14);
            border-color: rgba(94,234,212,0.42);
            transform: translateX(7px);
        }
        .tp-why-card-header {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            margin-bottom: 0.45rem;
        }
        .tp-why-num {
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            color: rgba(94,234,212,0.55);
            font-family: 'Noto Sans TC', sans-serif;
        }
        .tp-why-title {
            font-size: 1.7rem;
            font-weight: 700;
            color: #e2fdf7;
            letter-spacing: 0.03em;
            font-family: 'Noto Serif TC', serif;
        }
        .tp-why-desc {
            font-size: 1.05rem;
            color: rgba(180,230,218,0.70);
            line-height: 1.75;
            font-weight: 300;
        }

        /* ---- S2 軌道節點互動 ---- */
        .tp-fw-orbit-node {
            cursor: pointer;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease;
        }
        .tp-fw-orbit-node.tp-node-visible {
            opacity: 1;
            pointer-events: auto;
        }
        .tp-fw-orbit-node circle {
            transition: opacity 0.25s ease, filter 0.25s ease;
        }
        .tp-fw-orbit-node:hover circle:first-of-type {
            opacity: 0.85;
            filter: drop-shadow(0 0 18px rgba(20,184,166,0.7));
        }
        .tp-fw-orbit-node.active circle:first-of-type {
            opacity: 1;
            filter: drop-shadow(0 0 24px rgba(20,184,166,0.9));
            stroke: rgba(255,255,255,0.6);
            stroke-width: 3;
            filter: drop-shadow(0 0 18px rgba(94,234,212,0.8));
        }

        /* 面板內容滑入動畫 */
        @keyframes tp-panelReveal {
            from { opacity: 0; transform: translateX(-22px); filter: blur(2px); }
            to   { opacity: 1; transform: translateX(0);     filter: blur(0); }
        }

        /* ---- Section 2: 五大核心架構 ---- */
        .tp-fw-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .tp-fw-item {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            padding: 1.1rem 1.2rem;
            border-bottom: 1px solid rgba(13,148,136,0.15);
            cursor: pointer;
            transition: all 0.25s ease;
            border-radius: 0.5rem;
            margin-bottom: 0.3rem;
        }
        .tp-fw-item:hover, .tp-fw-item.active {
            background: rgba(13,148,136,0.08);
            border-color: rgba(13,148,136,0.3);
        }
        .tp-fw-item.active .tp-fw-num { color: #0d9488; }
        .tp-fw-item.active .tp-fw-arrow { transform: rotate(90deg); color: #0d9488; }
        .tp-fw-num {
            font-size: 1.5rem;
            font-weight: 800;
            color: #d1d5db;
            width: 2.8rem;
            flex-shrink: 0;
            font-family: 'Noto Sans TC', sans-serif;
            transition: color 0.25s;
        }
        .tp-fw-name {
            font-size: 1.15rem;
            font-weight: 600;
            color: #111827;
            letter-spacing: 0.02em;
        }
        .tp-fw-hint {
            font-size: 0.95rem;
            color: #6b7280;
            margin-top: 0.2rem;
        }
        .tp-fw-arrow {
            margin-left: auto;
            flex-shrink: 0;
            color: #9ca3af;
            transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), color 0.25s;
        }
        /* 右側面板 */
        .tp-fw-panel-wrap {
            background: #e6f7f2;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 4rem 4rem 3rem;
            min-height: 100%;
        }
        /* 大地方計畫式：點選時左緣漸入光效 */
        .tp-fw-panel-wrap::before {
            content: '';
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 80px;
            background: linear-gradient(to right, rgba(13,148,136,0.25), transparent);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
            z-index: 1;
        }
        .tp-fw-panel-wrap.reveal-active::before { opacity: 1; }
        .tp-fw-panel-content {
            width: 100%;
            animation: tp-panelReveal 0.5s cubic-bezier(0.22,1,0.36,1);
        }
        /* 白色毛玻璃卡片（仿 esg-consulting detail-content） */
        .tp-fw-detail-card {
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, 0.92);
            border-radius: 18px;
            padding: 2.4rem 2.8rem;
            box-shadow:
                0 20px 60px rgba(0, 45, 35, 0.10),
                0 8px 25px rgba(0, 45, 35, 0.06);
            width: 100%;
            max-width: 560px;
            margin: 0 auto;
            animation: tp-panelReveal 0.5s cubic-bezier(0.22,1,0.36,1);
        }
        @keyframes tp-fadeUp {
            from { opacity:0; transform:translateY(18px); }
            to   { opacity:1; transform:translateY(0); }
        }
        .tp-fw-point {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            align-items: flex-start;
        }
        .tp-fw-point-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #0d9488;
            flex-shrink: 0;
            margin-top: 0.45rem;
        }

        /* ---- 五大核心架構：面板背景圖（雙槽交叉淡入 + 右緣羽化與左側融合） ---- */
        .tp-fw-bg-slot {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            opacity: 0;
            transition: opacity 1.1s ease;
            pointer-events: none;
            z-index: 0;
            /* 右緣漸淡，無縫融入右側軌道圖 */
            mask-image: linear-gradient(
                to right,
                black 0%,
                black 55%,
                rgba(0,0,0,0.45) 80%,
                transparent 100%
            );
            -webkit-mask-image: linear-gradient(
                to right,
                black 0%,
                black 55%,
                rgba(0,0,0,0.45) 80%,
                transparent 100%
            );
        }
        .tp-fw-bg-slot.fw-slot-on {
            opacity: 1;
            animation: tp-fw-ken 15s ease forwards;
        }
        @keyframes tp-fw-ken {
            from { transform: scale(1.07); }
            to   { transform: scale(1.00); }
        }
        #tp-fw-bg-overlay {
            position: absolute;
            inset: 0;
            /* 同樣羽化，讓右緣完全透明，左側保留淡色霧面 */
            background: linear-gradient(
                to right,
                rgba(230, 247, 242, 0.72) 0%,
                rgba(230, 247, 242, 0.55) 50%,
                rgba(230, 247, 242, 0.15) 80%,
                transparent 100%
            );
            opacity: 0;
            transition: opacity 1s ease;
            pointer-events: none;
            z-index: 2;
        }
        #tp-fw-bg-overlay.fw-overlay-on { opacity: 1; }

        /* ---- Section entry sweep line ---- */
        .tp-section::after {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(to right, #14b8a6, #0d9488 50%, transparent 100%);
            z-index: 20;
            transition: width 1.8s cubic-bezier(0.22,1,0.36,1);
            pointer-events: none;
        }
        .tp-section.tp-sec-in::after { width: 100%; }

        /* ---- 工具原理與方法論：靜態展示卡片 ---- */
        .tp-flip-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.1rem;
            margin-bottom: 1.5rem;
        }
        .tp-static-card {
            position: relative;
            padding: 1.6rem 1.8rem;
            background: #0f2922;
            border: 1px solid rgba(94,234,212,0.18);
            border-radius: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            overflow: hidden;
            transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .tp-static-card:hover {
            background: #133528;
            border-color: rgba(94,234,212,0.38);
            box-shadow: 0 8px 28px rgba(20,184,166,0.15);
        }
        .tp-static-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(to right, #0d9488, #14b8a6 60%, transparent);
            border-radius: 1rem 1rem 0 0;
        }
        .tp-static-card-num {
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.28em;
            color: rgba(94,234,212,0.6);
            font-family: 'Noto Sans TC', sans-serif;
        }
        .tp-static-card-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: #e2fdf7;
            line-height: 1.45;
            font-family: 'Noto Serif TC', serif;
            letter-spacing: 0.02em;
        }
        .tp-static-card-text {
            font-size: 0.93rem;
            color: rgba(210,250,240,0.75);
            line-height: 1.85;
            font-weight: 300;
            font-family: 'Noto Sans TC', sans-serif;
            margin: 0;
        }

        /* ---- 產業應用範例：eco-col 風格 ---- */
        .tp-ind-col-wrap {
            display: flex;
            width: 100%;
            gap: 1rem;
            min-height: 420px;
            justify-content: center;
        }
        .tp-ind-col {
            position: relative;
            flex: 0 0 210px;
            overflow: hidden;
            cursor: pointer;
            border-radius: 1.25rem;
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .tp-ind-col:hover { transform: scale(1.03); z-index: 2; }
        .tp-ind-bg {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            filter: saturate(0.55) brightness(0.85);
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
        }
        .tp-ind-col:hover .tp-ind-bg {
            transform: scale(1.06);
            filter: saturate(0.7) brightness(0.88);
        }
        .tp-ind-col::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
            background: rgba(255, 255, 255, 0.15);
            pointer-events: none;
            transition: opacity 0.4s ease;
        }
        .tp-ind-col:hover::before { opacity: 0.05; }
        .tp-ind-content {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 3rem 1.5rem 1.5rem;
            z-index: 2;
            background: linear-gradient(to top,
                rgba(0,0,0,0.82) 0%,
                rgba(0,0,0,0.55) 45%,
                rgba(0,0,0,0.15) 75%,
                transparent 100%);
        }
        .tp-ind-num {
            display: inline-block;
            font-size: 1.05rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            color: #7effd4;
            margin-bottom: 0.6rem;
            padding-left: 0.65rem;
            border-left: 3px solid #5ee8bb;
            text-shadow: 0 1px 6px rgba(0,0,0,0.7);
        }
        .tp-ind-name {
            font-family: 'Noto Serif TC', serif;
            font-size: 1.55rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.3;
            margin-bottom: 0.4rem;
            text-shadow: 0 2px 6px rgba(0,0,0,0.95), 0 4px 20px rgba(0,0,0,0.75);
        }
        .tp-ind-sub {
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 0.88rem;
            color: rgba(235, 255, 248, 0.92);
            line-height: 1.8;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            text-shadow: 0 1px 4px rgba(0,0,0,0.8);
            transition: max-height 0.5s ease, opacity 0.45s ease, margin 0.3s ease;
        }
        .tp-ind-sub li {
            position: relative;
            padding-left: 1.1em;
            margin-bottom: 0.18rem;
        }
        .tp-ind-sub li::before {
            content: '—';
            position: absolute;
            left: 0;
            color: #7effd4;
            font-size: 0.78em;
            line-height: 1.8;
        }
        .tp-ind-col:hover .tp-ind-sub {
            max-height: 14rem;
            opacity: 1;
            margin-bottom: 0.75rem;
        }
        @media (max-width: 900px) {
            .tp-ind-col-wrap { flex-direction: column; min-height: auto; }
            .tp-ind-col { min-height: 260px; }
            .tp-ind-col .tp-ind-sub { max-height: 14rem; opacity: 1; margin-bottom: 0.75rem; }
        }

        /* ---- Section 3: 核心功能 ---- */
        .tp-steps {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .tp-step {
            display: grid;
            grid-template-columns: 48px 2px 1fr;
            gap: 0 1.5rem;
            padding-bottom: 2.5rem;
            align-items: start;
        }
        .tp-step-num {
            font-size: 1.6rem;
            font-weight: 800;
            color: #5eead4;
            font-family: 'Noto Sans TC', sans-serif;
            line-height: 1;
            padding-top: 0.1rem;
            animation: tp-num-glow 2.8s ease-in-out infinite;
        }
        .tp-step-line {
            width: 2px;
            background: linear-gradient(to bottom, rgba(94,234,212,0.5), rgba(94,234,212,0.1));
            min-height: 80px;
            align-self: stretch;
            margin-top: 0.3rem;
        }
        .tp-step-title {
            font-size: 1.55rem;
            font-weight: 700;
            color: #e2fdf7;
            margin-bottom: 0.6rem;
            letter-spacing: 0.02em;
        }
        .tp-step-desc {
            font-size: 1.2rem;
            color: rgba(180,230,220,0.75);
            line-height: 1.8;
            font-weight: 300;
        }
        .tp-feat-card {
            background: #ffffff;
            border: 1px solid rgba(13,148,136,0.15);
            border-radius: 1rem;
            padding: 1.8rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        .tp-feat-card:hover {
            background: #ffffff;
            border-color: rgba(13,148,136,0.35);
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(13,148,136,0.12);
        }
        .tp-feat-num {
            font-size: 3.5rem;
            font-weight: 900;
            color: #0d9488;
            line-height: 1;
            margin-bottom: 0.5rem;
            font-family: 'Noto Sans TC', sans-serif;
        }
        .tp-feat-label {
            font-size: 1.25rem;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 0.3rem;
        }
        .tp-feat-sub {
            font-size: 1.05rem;
            color: #4b5563;
        }
        .tp-tech-badge {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            background: rgba(94,234,212,0.07);
            border: 1px solid rgba(94,234,212,0.2);
            border-radius: 0.75rem;
            padding: 1rem 1.2rem;
            margin-top: 1.5rem;
            color: rgba(200,240,235,0.8);
            font-size: 0.85rem;
            line-height: 1.7;
        }
        .tp-tech-badge svg { flex-shrink: 0; margin-top: 0.1rem; color: #5eead4; }

        /* ---- Section 4: 產業應用 ---- */
        .tp-industry-card {
            background: white;
            border-radius: 1.2rem;
            border: 1px solid rgba(13,148,136,0.1);
            box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 20px 50px rgba(0,0,0,0.06);
            transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
            position: relative;
            overflow: hidden;
        }
        .tp-industry-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: var(--card-accent, #0d9488);
        }
        .tp-industry-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.06), 0 36px 80px rgba(0,0,0,0.1);
            border-color: rgba(13,148,136,0.22);
        }
        .tp-industry-top {
            padding: 1.8rem 1.8rem 1.2rem;
        }
        .tp-industry-num {
            font-size: 0.62rem;
            letter-spacing: 0.28em;
            font-weight: 700;
            color: var(--card-accent, #0d9488);
            display: block;
            margin-bottom: 0.55rem;
        }
        .tp-industry-name {
            font-family: 'Noto Serif TC', serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: #0f172a;
            line-height: 1.3;
        }
        .tp-industry-body {
            padding: 1rem 1.8rem 1.6rem;
            border-top: 1px solid rgba(0,0,0,0.05);
        }
        .tp-industry-item {
            display: flex;
            align-items: flex-start;
            gap: 0.55rem;
            font-size: 0.88rem;
            padding: 0.38rem 0;
            color: #4b5563;
            line-height: 1.5;
        }
        .tp-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 0.48rem;
        }

        /* ---- CTA Banner ---- */
        .tp-cta-banner {
            position: relative;
            overflow: hidden;
            padding: 7rem 0;
            min-height: 55vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        .tp-cta-bg {
            position: absolute;
            inset: 0;
            background: url('../../assets/images/sustainable-finance/BANNER.jpg') center/cover no-repeat;
            z-index: 0;
        }
        .tp-cta-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0,30,22,0.88) 0%, rgba(0,55,42,0.78) 50%, rgba(0,40,32,0.85) 100%);
            z-index: 1;
        }
        .tp-cta-inner {
            position: relative;
            z-index: 2;
            max-width: 680px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .tp-cta-btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            border-radius: 9999px;
            font-size: 1rem;
            font-weight: 600;
            font-family: 'Noto Sans TC', sans-serif;
            letter-spacing: 0.05em;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tp-cta-btn-primary {
            background: white;
            color: #0d9488;
        }
        .tp-cta-btn-primary:hover {
            background: #f0faf8;
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.25);
        }
        .tp-cta-btn-outline {
            background: transparent;
            border: 2px solid rgba(255,255,255,0.5);
            color: white;
        }
        .tp-cta-btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: white;
            transform: translateY(-3px);
        }

        /* ---- 捲入動畫（漂浮進來） ---- */
        .tp-reveal {
            opacity: 0;
            transform: translateY(38px);
            filter: blur(3px);
            transition: opacity 0.95s cubic-bezier(0.22,1,0.36,1),
                        transform 0.95s cubic-bezier(0.22,1,0.36,1),
                        filter 0.95s ease;
        }
        .tp-reveal.in-view { opacity: 1; transform: translateY(0); filter: blur(0); }

        /* ---- 宇宙動畫 ---- */
        @keyframes tp-orbit-cw  { to { transform: rotate(360deg); } }
        @keyframes tp-orbit-ccw { to { transform: rotate(-360deg); } }
        @keyframes tp-cosmos-pulse {
            0%, 100% { filter: drop-shadow(0 0 8px rgba(20,184,166,0.35)); }
            50%       { filter: drop-shadow(0 0 28px rgba(20,184,166,0.75)); }
        }
        @keyframes tp-sat-float {
            0%, 100% { transform: translateY(0px); }
            50%       { transform: translateY(-8px); }
        }
        @keyframes tp-star-twinkle {
            0%, 100% { opacity: 0.12; }
            50%       { opacity: 0.65; }
        }

        /* 步驟數字光暈 */
        @keyframes tp-num-glow {
            0%, 100% { text-shadow: 0 0 6px rgba(94,234,212,0.2); }
            50%       { text-shadow: 0 0 20px rgba(94,234,212,0.75), 0 0 40px rgba(94,234,212,0.3); }
        }

        /* 從左滑入 */
        .tp-reveal-x {
            opacity: 0;
            transform: translateX(-35px);
            filter: blur(3px);
            transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1),
                        transform 0.9s cubic-bezier(0.22,1,0.36,1),
                        filter 0.9s ease;
        }
        .tp-reveal-x.in-view { opacity: 1; transform: translateX(0); filter: blur(0); }

        /* 縮放淡入（特色卡片） */
        .tp-reveal-scale {
            opacity: 0;
            transform: scale(0.92) translateY(18px);
            filter: blur(3px);
            transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
                        transform 0.8s cubic-bezier(0.22,1,0.36,1),
                        filter 0.8s ease;
        }
        .tp-reveal-scale.in-view { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }

        /* ---- Block-level rise：純 transform，讓子元素各自 opacity 動畫不受干擾 ---- */
        .tp-block {
            transform: translateY(62px);
            transition: transform 1.15s cubic-bezier(0.22,1,0.36,1);
        }
        .tp-block.in-view { transform: translateY(0); }

        /* ---- RWD ---- */
        @media (max-width: 900px) {
            .tp-split, .tp-split-reverse { grid-template-columns: 1fr; direction: ltr; }
            /* !important 覆蓋 inline style */
            .tp-pane-text { padding: 2.5rem 1.5rem !important; }
            .tp-pane-visual { padding: 2rem 1.5rem !important; }
            .tp-fw-panel-wrap { min-height: auto; padding: 2.5rem 1.5rem !important; }
            .tp-section { padding: 4rem 0 !important; }
        }
        @media (max-width: 768px) {
            .tp-flip-grid { grid-template-columns: 1fr; }
            .tp-sec3-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
            .tp-sec3-left { margin-left: 0 !important; }
            .tp-sec3-wrap { padding: 0 1.5rem !important; }
            .tp-sec4-wrap { padding: 0 1.5rem !important; }
            .tp-fw-detail-card { padding: 1.4rem 1rem; max-width: 100%; }
            /* Section 3 右欄 margin 修正 */
            .tp-sec3-grid > div { margin-left: 0 !important; margin-right: 0 !important; }
        }
        @media (max-width: 640px) {
            .tp-why-title { font-size: 1.3rem; }
            /* 產業應用：固定寬度改為自動填滿 */
            .tp-ind-col { flex: 0 0 100% !important; min-height: 220px; }
            .tp-ind-col-wrap { flex-direction: column; min-height: auto; gap: 0.75rem; }
            .tp-cta-banner { padding: 4rem 0 !important; }
            .hero-main-h1 { font-size: clamp(2.2rem, 10vw, 4rem) !important; }
            /* 前導影片統計卡片換行 */
            #intro-text > div:last-child { gap: 0.5rem !important; }
        }


/* === 轉換自 inline style="" === */
.is-6b57fe51 {
    position: fixed;
    inset: 0;
    z-index: 99999;
    overflow: hidden;
    background: #000;
}

.is-0faa8445 {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.is-c00032d1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,rgba(0,30,25,0.42) 0%,rgba(0,60,50,0.30) 50%,rgba(0,15,10,0.58) 100%);
    pointer-events: none;
}

.is-8f80337d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(to bottom,rgba(0,0,0,0.5) 0%,transparent 100%);
    pointer-events: none;
}

.is-489d1fd1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(to top,rgba(0,0,0,0.55) 0%,transparent 100%);
    pointer-events: none;
}

.is-8d655f79 {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1.4s ease,transform 1.4s cubic-bezier(0.22,1,0.36,1);
    pointer-events: none;
}

.is-d584dcd5 {
    font-size: clamp(0.65rem,1.2vw,0.9rem);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 2rem;
    font-family: 'Noto Sans TC',sans-serif;
    font-weight: 300;
}

.is-8f17e0e7 {
    font-size: clamp(3.5rem,9vw,8rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    text-shadow: 0 6px 50px rgba(0,0,0,0.7),0 0 100px rgba(20,184,166,0.25);
    font-family: 'Noto Serif TC',serif;
    line-height: 1.05;
    margin-bottom: 1.8rem;
}

.is-dd17cc5b {
    width: 70px;
    height: 2px;
    background: linear-gradient(to right,#14b8a6,#67e8f9);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.is-f189015d {
    font-size: clamp(1rem,2vw,1.35rem);
    opacity: 0.88;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    font-family: 'Noto Sans TC',sans-serif;
    font-weight: 300;
    letter-spacing: 0.08em;
    max-width: 700px;
}

.is-49e2431b {
    display: flex;
    gap: clamp(0.6rem,2vw,1.2rem);
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.is-557633b0 {
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 0.9rem;
    padding: clamp(0.9rem,2vw,1.3rem) clamp(1.2rem,3vw,2rem);
    text-align: center;
    min-width: 110px;
}

.is-1028f8e6 {
    font-size: clamp(1.8rem,4vw,2.6rem);
    font-weight: 800;
    color: #5eead4;
    line-height: 1;
}

.is-936dd952 {
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 0.35rem;
    opacity: 0.92;
}

.is-dfd562a6 {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 0.15rem;
}

.is-0a1dbeba {
    position: absolute;
    bottom: 2.8rem;
    right: 2.5rem;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.55rem 1.4rem;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-family: 'Noto Sans TC',sans-serif;
    cursor: pointer;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 1;
}
.is-0a1dbeba:hover {
    background: rgba(255,255,255,0.18);
}

.is-8f71058d {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
}

.is-364ee73b {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right,#0d9488,#14b8a6,#67e8f9);
    transition: width 0.15s linear;
    border-radius: 0 2px 2px 0;
}

.is-ac65cad6 {
    padding: 8rem 0;
}

.is-1c2df229 {
    animation: tp-star-twinkle 3.2s ease-in-out 0.4s infinite;
}

.is-7d1cbef8 {
    animation: tp-star-twinkle 2.7s ease-in-out 1.1s infinite;
}

.is-e52e2740 {
    animation: tp-star-twinkle 4.1s ease-in-out 0.7s infinite;
}

.is-b23b0912 {
    animation: tp-star-twinkle 2.9s ease-in-out 2.0s infinite;
}

.is-f05cfc4d {
    animation: tp-star-twinkle 3.6s ease-in-out 0.3s infinite;
}

.is-a0acdb0d {
    animation: tp-star-twinkle 3.0s ease-in-out 1.7s infinite;
}

.is-057a3bfe {
    animation: tp-star-twinkle 2.5s ease-in-out 2.3s infinite;
}

.is-6cc703b9 {
    animation: tp-star-twinkle 3.8s ease-in-out 0.9s infinite;
}

.is-4049f245 {
    animation: tp-star-twinkle 2.3s ease-in-out 1.4s infinite;
}

.is-5423c8cd {
    animation: tp-star-twinkle 4.4s ease-in-out 2.8s infinite;
}

.is-03096eb1 {
    min-height: 0;
    align-items: center;
}

.is-b4f0a00a {
    padding: 0 5rem 0 8rem;
}

.is-11e1bfe2 {
    transition-delay: 0.18s;
    font-family: 'Noto Serif TC',serif;
    font-size: clamp(2.2rem,4vw,3.8rem);
    font-weight: 700;
    color: white;
    line-height: 1.22;
    margin: 1.5rem 0 0;
}

.is-5b164c56 {
    color: #5eead4;
}

.is-c106af31 {
    transition-delay: 0.34s;
}

.is-bac1cc82 {
    transition-delay: 0.48s;
    color: rgba(200,240,235,0.82);
    margin-bottom: 1.6rem;
}

.is-316ec28d {
    color: #5eead4;
    font-weight: 600;
}

.is-46290b7a {
    transition-delay: 0.62s;
    color: rgba(180,230,220,0.65);
}

.is-a9164099 {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 4rem 4rem 0 2rem;
    gap: 0;
    transition-delay: 0.12s;
}

.is-1627f074 {
    transition-delay: 0.2s;
}

.is-3341782f {
    transition-delay: 0.38s;
}

.is-c58fb597 {
    transition-delay: 0.56s;
}

.is-f0867e70 {
    opacity: 0.5;
}

.is-47e9de45 {
    flex-direction: column;
    padding: 5rem 2rem 5rem 5rem;
    align-items: center;
    justify-content: center;
}

.is-c577d7e7 {
    text-align: center;
    margin-bottom: 1.8rem;
    width: 100%;
}

.is-b64abaef {
    font-family: 'Noto Serif TC',serif;
    font-size: clamp(2.2rem,4vw,3.5rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin: 0;
}

.is-15be0418 {
    color: #0d9488;
}

.is-d72fec59 {
    max-width: 520px;
    overflow: visible;
    cursor: default;
}

.is-e07f5435 {
    animation: tp-orbit-ccw 80s linear infinite;
    transform-origin: 280px 280px;
    transform-box: view-box;
}

.is-e5432c79 {
    animation: tp-orbit-cw 55s linear infinite;
    transform-origin: 280px 280px;
    transform-box: view-box;
}

.is-6b5bbe72 {
    animation: tp-cosmos-pulse 3.5s ease-in-out infinite;
    transform-origin: 280px 280px;
    transform-box: view-box;
}

.is-ea3e702f {
    animation: tp-sat-float 4s ease-in-out infinite;
    transform-origin: 280px 80px;
    transform-box: view-box;
    cursor: pointer;
}

.is-80fe90dd {
    animation: tp-sat-float 5.2s ease-in-out 0.8s infinite;
    transform-origin: 470px 218px;
    transform-box: view-box;
    cursor: pointer;
}

.is-5c8efa4c {
    animation: tp-sat-float 4.8s ease-in-out 1.6s infinite;
    transform-origin: 398px 442px;
    transform-box: view-box;
    cursor: pointer;
}

.is-1fa5e2f6 {
    animation: tp-sat-float 5.6s ease-in-out 2.4s infinite;
    transform-origin: 162px 442px;
    transform-box: view-box;
    cursor: pointer;
}

.is-abbb6fb3 {
    animation: tp-sat-float 4.4s ease-in-out 3.2s infinite;
    transform-origin: 90px 218px;
    transform-box: view-box;
    cursor: pointer;
}

.is-382971fd {
    transition-delay: 0.15s;
    padding: 5rem 5rem 5rem 4rem;
}

.is-6b7f29ef {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    pointer-events: none;
    z-index: 3;
}

.is-9369215a {
    width: 100%;
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.is-03731e44 {
    padding: 2rem 0;
}

.is-09ddce68 {
    margin: 0 0 1rem;
    opacity: 0.3;
}

.is-02528710 {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.7;
}

.is-93b8ea5b {
    display: none;
}

.is-45581ad2 {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5rem;
    position: relative;
    z-index: 1;
}

.is-ec908331 {
    text-align: center;
    margin-bottom: 5rem;
}

.is-e495f3dd {
    font-family: 'Noto Serif TC',serif;
    font-size: clamp(2.2rem,4vw,3.5rem);
    font-weight: 700;
    color: white;
    margin: 0 0 1rem;
    letter-spacing: 0.03em;
}

.is-803722de {
    color: rgba(200,240,235,0.72);
    font-size: 1.2rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.95;
    font-weight: 300;
}

.is-9a561b35 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    transition-delay: 0.1s;
}

.is-96a5ebaf {
    margin-left: -2rem;
}

.is-d2ef81f5 {
    font-size: 1.05rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #5eead4;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.is-c592ed2d {
    transition-delay: 0.1s;
}

.is-55b4c986 {
    transition-delay: 0.26s;
}

.is-689d2c72 {
    transition-delay: 0.42s;
}

.is-94501e25 {
    padding-bottom: 0;
    transition-delay: 0.58s;
}

.is-3d885b8d {
    background: transparent;
}

.is-c1cd6f61 {
    margin-right: -2rem;
}

.is-8e7e0ac5 {
    transition-delay: 0.12s;
}

.is-78e406eb {
    transition-delay: 0.40s;
}

.is-2e96f68f {
    transition-delay: 0.54s;
}

.is-c4fcbe5f {
    transition-delay: 0.68s;
}

.is-152ac643 {
    text-align: center;
    margin-bottom: 4.5rem;
}

.is-1d6b60a1 {
    font-family: 'Noto Serif TC',serif;
    font-size: clamp(2rem,3.5vw,3.2rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1rem;
    line-height: 1.25;
}

.is-01e4b659 {
    color: #4b5563;
    font-size: 1rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.88;
}

.is-88061494 {
    color: rgba(160,240,210,0.8);
    justify-content: center;
}

.is-e1cdab14 {
    font-family: 'Noto Serif TC',serif;
    font-size: clamp(2rem,4vw,3.4rem);
    font-weight: 700;
    color: white;
    margin: 1.5rem 0 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.is-da8deb0a {
    width: 50px;
    height: 2px;
    background: linear-gradient(to right,rgba(100,220,180,0.85),transparent);
    margin: 0 auto 1.8rem;
    border-radius: 2px;
}

.is-81ec3f6d {
    color: rgba(215,255,242,0.75);
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    max-width: 480px;
    margin: 0 auto 3rem;
    line-height: 1.85;
}

.is-413606f3 {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === CSP-safe：替代 JS 範本 style="" === */
.tp-fw-point-dot { width: 10px; height: 10px; margin-top: 0.55rem; }
.tp-fw-point-text { font-size: 1.05rem; color: #1f4038; line-height: 1.85; margin: 0; font-family: 'Noto Sans TC', sans-serif; }
.tp-fw-point-label { font-weight: 700; }
.tp-fw-category-label { display: inline-flex; align-items: center; gap: 0.65rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; font-family: 'Noto Sans TC', sans-serif; margin-bottom: 1.2rem; }
.tp-fw-category-line { display: inline-block; width: 28px; height: 1px; opacity: 0.7; }
.tp-fw-pillar-title { font-family: 'Noto Serif TC', serif; font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 700; color: #0a2a1e; line-height: 1.25; margin: 0 0 1.2rem; }
.tp-fw-divider { width: 48px; height: 3px; margin-bottom: 1.6rem; border-radius: 3px; }

/* ============================================================
   補充：缺失的桌面版佈局規則（從 芷柔改4 inline style 提取）
   ============================================================ */

/* ── Section 垂直間距（芷柔改4 各 section 有 style="padding:8rem 0"） ── */
.tp-section {
    padding: 8rem 0;
}
/* Section 2 (框架圖) 由 tp-split min-height 控制，不需額外 padding */
#tp-s2 {
    padding: 0;
}

/* 深色區塊預設文字色（覆蓋 style.css body color: #004d40） */
.tp-dark {
    color: rgba(200, 240, 230, 0.85);
}
.tp-dark .tp-body {
    color: rgba(195, 235, 225, 0.82);
}

/* Section 3：核心功能與生成流程 */
.tp-sec3-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5rem;
    position: relative;
    z-index: 1;
}
.tp-sec3-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    transition-delay: 0.1s;
}
.tp-sec3-left {
    margin-left: -2rem;
}
.is-c1cd6f61 {
    margin-right: -2rem;
}

/* Section 4：產業應用範例 */
.tp-sec4-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5rem;
    position: relative;
    z-index: 1;
}

/* 響應式補充 */
@media (max-width: 900px) {
    .tp-section {
        padding: 4rem 0 !important;
    }
    #tp-s2 {
        padding: 0 !important;
    }
    .tp-sec3-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .tp-sec3-left {
        margin-left: 0 !important;
    }
    .is-c1cd6f61 {
        margin-right: 0 !important;
    }
    .tp-sec3-wrap,
    .tp-sec4-wrap {
        padding: 0 1.5rem !important;
    }
}

/* ============================================================
   Section 1 (什麼是轉型計畫) 細部修正
   還原 芷柔改4 中的 inline style 覆蓋
   ============================================================ */

/* Section 1 的 tp-split：移除 min-height，改由 section padding 控制高度 */
.tp-dark .tp-split {
    min-height: 0;
    align-items: center;
}

/* h2 標題：白色、正確字型大小 */
.tp-dark h2 {
    color: rgba(240, 255, 250, 0.95);
    font-family: 'Noto Serif TC', serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 700;
    line-height: 1.22;
    margin: 1.5rem 0 0;
}

/* 左欄 pane：移除上下 padding（由 section padding 8rem 提供） */
.tp-dark .tp-pane-text {
    padding: 0 5rem 0 8rem;
}

/* 右欄 pane：垂直排列、拉伸對齊 */
.tp-dark .tp-pane-visual {
    flex-direction: column;
    align-items: stretch;
    padding: 4rem 4rem 0 2rem;
    gap: 0;
}

/* 第一段 body text 顏色 */
.tp-dark .tp-pane-text .tp-body:first-of-type {
    color: rgba(200, 240, 235, 0.82);
    margin-bottom: 1.6rem;
}

/* 第二段 body text 顏色（稍深） */
.tp-dark .tp-pane-text .tp-body:last-of-type {
    color: rgba(180, 230, 220, 0.65);
}

/* Why cards transition delays（逐卡錯開動畫） */
.tp-why-card:nth-child(1).tp-reveal { transition-delay: 0.20s; }
.tp-why-card:nth-child(2).tp-reveal { transition-delay: 0.38s; }
.tp-why-card:nth-child(3).tp-reveal { transition-delay: 0.56s; }

/* 響應式：小螢幕還原 pane padding */
@media (max-width: 900px) {
    .tp-dark .tp-pane-text {
        padding: 2rem 1.5rem !important;
    }
    .tp-dark .tp-pane-visual {
        padding: 1.5rem !important;
    }
}
