:root {
            --primary: #FF6B00;
            --primary-dark: #E85F00;
            --primary-light: #FFF4EB;
            --primary-rgb: 255, 107, 0;
            --primary-shadow: rgba(255, 107, 0, 0.18);
            --text-main: #0F172A;
            --text-muted: #64748B;
            --text-subtle: #94A3B8;
            --surface-plain: #FFFFFF;
            --surface-muted: #FAFAFA;
            --surface-warm: #FAF9F6;
            --border-color: #E5E7EB;
            --border-subtle: rgba(15, 23, 42, 0.06);
            --accent: #FF6B00;
            --accent-light: #FFF7ED;
            --success: #10B981;
            --success-light: #D1FAE5;
            --error: #EF4444;
            --error-light: #FEE2E2;
            --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.03);
            --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
            --glass-bg: rgba(255, 255, 255, 0.72);
            --glass-border: rgba(255, 255, 255, 0.5);
            --glass-blur: blur(16px);
            --radius-xs: 6px;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-pill: 9999px;
        }

        html[data-theme="dark"] {
            --primary: #FF8533;
            --primary-dark: #FF6B00;
            --primary-light: #3D2200;
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --surface-plain: #1e293b;
            --surface-muted: #0f172a;
            --border-color: #334155;
            --border-subtle: rgba(255, 255, 255, 0.08);
            --glass-bg: rgba(30, 41, 59, 0.85);
            --glass-border: rgba(51, 65, 85, 0.6);
        }

        html[data-theme="cream"] {
            --primary: #FF6B00;
            --primary-light: #FFF4EB;
            --text-main: #3d3429;
            --text-muted: #7a6f62;
            --surface-plain: #fffef9;
            --surface-muted: #faf7f2;
            --border-color: #e8dfd0;
            --border-subtle: rgba(15, 23, 42, 0.06);
            --glass-bg: rgba(255, 254, 249, 0.88);
            --glass-border: rgba(232, 223, 208, 0.7);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
        }

        body {
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background-color: var(--surface-muted);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Glassmorphism & Bento Layout Styles */
        .glass-panel {
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            border: 1px solid var(--glass-border);
            box-shadow: var(--shadow-sm);
        }

        /* Tesla-style Glass Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 92px;
            background: rgba(255, 255, 255, 0.82);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid var(--border-subtle);
            padding: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-inner {
            max-width: 1360px;
            margin: 0 auto;
            padding: 0 clamp(24px, 4vw, 48px);
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-sizing: border-box;
        }

        .logo {
            font-family: 'Dancing Script', cursive !important;
            font-size: 44px !important;
            font-weight: 800 !important;
            letter-spacing: 0.5px;
            color: #FF6B00 !important;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .logo-beta-tag {
            font-family: 'Pretendard', sans-serif !important;
            font-size: 11px !important;
            font-weight: 700 !important;
            letter-spacing: 0;
            color: #9a3412 !important;
            background: #fff7ed;
            border: 1px solid rgba(154, 52, 18, 0.18);
            border-radius: 999px;
            padding: 4px 10px;
            line-height: 1.2;
        }

        .logo-dot {
            display: none !important;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 36px;
        }

        nav a {
            text-decoration: none;
            color: #334155;
            font-size: 18px !important;
            font-weight: 600 !important;
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
            cursor: pointer;
            transition: color 0.2s ease;
            position: relative;
            padding: 6px 0;
            letter-spacing: -0.01em;
        }

        nav a:hover {
            color: var(--text-main);
        }

        nav a.active {
            color: var(--text-main);
            font-weight: 600;
        }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #334155;
            border-radius: 2px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .header-prefs {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .pref-btn {
            min-width: 40px;
            height: 40px;
            padding: 0 14px;
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            background: transparent;
            color: var(--text-muted);
            font-family: 'Pretendard', sans-serif;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .pref-btn:hover {
            color: var(--text-main);
            border-color: rgba(15, 23, 42, 0.15);
            background: rgba(15, 23, 42, 0.03);
        }

        .login-btn {
            background: #334155;
            border: 1px solid #334155;
            color: #FFFFFF;
            padding: 10px 24px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            font-family: 'Pretendard', sans-serif;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .login-btn:hover {
            background: #1E293B;
            border-color: #1E293B;
            color: #FFFFFF;
        }

        #logoutBtn::before {
            display: none;
        }

        .user-profile {
            display: none;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 500;
        }

        .avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
        }

        /* Active View System */
        .view-content {
            display: none;
            padding-top: 92px;
            min-height: 100vh;
        }

        .view-content.active {
            display: block;
        }

        /* 1. HOME VIEW — Card-free Spline + #FFFFFF 순백 (Spline 흰배경 + multiply) */
        #viewHome.view-content {
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            filter: none !important;
            background: #FFFFFF !important;
        }

        .home-hero,
        .home-hero::before,
        .home-hero-text-wrap {
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            filter: none !important;
        }

        .home-hero-bg,
        .home-hero-bg-scrim {
            display: none !important;
        }

        .home-hero {
            position: relative;
            box-sizing: border-box;
            min-height: calc(100vh - 92px);
            display: flex;
            flex-direction: column;
            align-items: stretch;
            justify-content: center;
            padding: 0;
            background: #FFFFFF !important;
            overflow: hidden !important;
        }

        html[data-theme="dark"] .home-hero,
        html[data-theme="dark"] #viewHome.view-content {
            background: #FFFFFF !important;
        }

        .home-hero-inner {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: 100%;
            max-width: 1400px;
            min-height: calc(100vh - 92px);
            margin: 0 auto;
            padding: 0 clamp(20px, 4vw, 56px);
            box-sizing: border-box;
            gap: clamp(16px, 3vw, 48px);
            position: relative;
            z-index: 10;
            overflow: visible !important;
            pointer-events: none;
        }

        .hero-left-col {
            flex: 0 0 45%;
            max-width: 580px;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            justify-content: center;
            box-sizing: border-box;
            z-index: 20;
            pointer-events: auto;
            margin-top: 0;
            transform: translateY(-60px);
        }

        .hero-right-col {
            position: absolute !important;
            right: 0;
            top: 0;
            width: 58% !important;
            height: 100% !important;
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
            overflow: hidden !important;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            z-index: 1;
            background: transparent;
            border: none;
            box-shadow: none;
            pointer-events: auto;
        }

        .spline-stage {
            width: 100% !important;
            height: 100%;
            min-height: 520px;
            margin: 0;
            transform: none;
            background: transparent;
            border: none;
            box-shadow: none;
            overflow: hidden !important;
            display: flex;
            align-items: flex-start !important;
            justify-content: flex-end;
            position: relative;
            z-index: 1;
            -webkit-mask-image: linear-gradient(
                to bottom,
                #000 0%,
                #000 86%,
                rgba(0, 0, 0, 0.92) 90%,
                rgba(0, 0, 0, 0.65) 94%,
                rgba(0, 0, 0, 0.28) 97.5%,
                transparent 100%
            );
            mask-image: linear-gradient(
                to bottom,
                #000 0%,
                #000 86%,
                rgba(0, 0, 0, 0.92) 90%,
                rgba(0, 0, 0, 0.65) 94%,
                rgba(0, 0, 0, 0.28) 97.5%,
                transparent 100%
            );
        }

        .spline-robot-frame {
            width: 100%;
            height: calc(100% + 132px) !important;
            border: none;
            background: transparent;
            display: block;
            position: relative;
            z-index: 1;
            flex-shrink: 0;
            transform: scale(1.0) translateX(6%) translateY(36px) !important;
            transform-origin: top center;
        }

        .hero-right-col .spline-logo-cover,
        .home-hero .spline-logo-cover,
        .spline-logo-cover {
            display: none !important;
        }

        .home-below-fold {
            padding-bottom: 48px;
        }

        .home-below-fold .section-title:first-child {
            scroll-margin-top: 80px;
            padding-top: 8px;
        }

        .hero-scroll-hint {
            position: absolute;
            left: 50%;
            bottom: clamp(12px, 2.5vh, 24px);
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            border: none;
            background: transparent;
            cursor: pointer;
            color: var(--text-muted);
            padding: 4px 12px;
            opacity: 0.72;
            animation: heroScrollFade 2.4s ease-in-out infinite;
            z-index: 20;
            pointer-events: auto;
        }

        .hero-scroll-hint:hover {
            opacity: 1;
            color: #ff6b00;
        }

        .home-hero .hero-scroll-hint,
        .home-hero .hero-scroll-hint:hover {
            color: #374151;
        }

        .home-hero .hero-scroll-hint:hover {
            color: #ff6b00;
        }

        .hero-scroll-mouse {
            width: 22px;
            height: 34px;
            border: 2px solid currentColor;
            border-radius: 12px;
            position: relative;
        }

        .hero-scroll-mouse::after {
            content: '';
            position: absolute;
            top: 7px;
            left: 50%;
            width: 4px;
            height: 7px;
            margin-left: -2px;
            background: currentColor;
            border-radius: 2px;
            animation: heroScrollWheel 1.8s ease-in-out infinite;
        }

        .hero-scroll-chevron {
            font-size: 14px;
            line-height: 1;
            animation: heroScrollBounce 1.8s ease-in-out infinite;
        }

        @keyframes heroScrollFade {
            0%, 100% { opacity: 0.45; }
            50% { opacity: 0.9; }
        }

        @keyframes heroScrollWheel {
            0%, 100% { transform: translateY(0); opacity: 1; }
            50% { transform: translateY(8px); opacity: 0.35; }
        }

        @keyframes heroScrollBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(4px); }
        }

        .hero-badge {
            background-color: var(--primary-light);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
            display: inline-block;
        }

        .home-hero-text-wrap {
            max-width: 920px;
            width: 100%;
            margin: 0 auto 12px;
            padding: 0;
            background: transparent;
            border: none;
            box-shadow: none;
        }

        /* v78+ — 헤더와 동일 Dancing Script 로고 (히어로 중복 제거 v92) */
        .hero-left-col .hero-rody-script,
        p.hero-rody-script {
            display: none !important;
        }

        .hero-rody-name {
            color: #FF6B00 !important;
        }

        .hero-rody-dot {
            display: none !important;
        }

        .hero-left-col .hero-main-title,
        .hero-main-title {
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
            font-size: clamp(52px, 6.2vw, 76px) !important;
            font-weight: 900 !important;
            line-height: 1.12 !important;
            color: #0F172A !important;
            margin: 12px 0 24px !important;
            letter-spacing: -1.0px !important;
            word-break: keep-all;
            text-shadow: none;
            white-space: nowrap !important;
        }

        .hero-main-title .serif-title {
            font-family: 'Dancing Script', cursive !important;
            font-size: 1.15em !important;
            font-weight: 700 !important;
            letter-spacing: 0.08em !important;
            color: #FF6B00 !important;
            margin-left: 16px !important;
            vertical-align: middle;
        }

        .hero-left-col .hero-sub-features,
        .home-hero p.hero-sub-features {
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
            font-size: 23px !important;
            font-weight: 600 !important;
            line-height: 1.5 !important;
            color: #334155 !important;
            margin: 0 0 44px !important;
            letter-spacing: -0.02em;
            word-break: keep-all;
            max-width: 35em;
            text-align: center !important;
            text-shadow: none;
            display: flex;
            align-self: stretch;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            width: 100%;
            gap: 6px;
        }

        .sub-icon {
            color: #94A3B8;
            stroke: #94A3B8;
            display: inline-block;
            vertical-align: middle;
            margin-right: 4px;
            flex-shrink: 0;
            width: 15px;
            height: 15px;
        }

        .hero-sub-item {
            display: inline-flex;
            align-items: center;
            font-weight: 600;
        }

        .sub-divider {
            color: #CBD5E1;
            margin: 0 6px;
            font-weight: 400;
        }

        .hero-cta-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 12px;
            width: 100%;
        }

        /* v101 — Hero CTA Spotlight Liquid Glass (mouse-tracking glow) */
        .hero-left-col .btn-hero-primary,
        .home-hero .btn-hero-primary,
        .hero-left-col .btn-primary-large,
        .home-hero .btn-primary-large,
        .btn-hero-primary,
        .home-hero .btn-primary-large,
        .btn-hero-outline {
            position: relative;
            background: rgba(255, 255, 255, 0.6) !important;
            backdrop-filter: blur(20px) saturate(180%) !important;
            -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
            border: 1px solid rgba(51, 65, 85, 0.15) !important;
            font-size: 17px !important;
            font-weight: 700 !important;
            padding: 16px 36px !important;
            border-radius: 8px !important;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.9),
                0 10px 30px rgba(51, 65, 85, 0.05) !important;
            cursor: pointer;
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            letter-spacing: -0.01em;
            font-family: 'Pretendard', sans-serif;
            isolation: isolate;
        }

        .hero-left-col .btn-hero-primary,
        .home-hero .btn-hero-primary,
        .hero-left-col .btn-primary-large,
        .home-hero .btn-primary-large,
        .btn-hero-primary,
        .home-hero .btn-primary-large {
            color: #334155 !important;
        }

        .btn-hero-outline {
            font-weight: 600 !important;
            color: #64748B !important;
            background: rgba(255, 255, 255, 0.35) !important;
            border: 1px solid rgba(51, 65, 85, 0.06) !important;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.9),
                0 10px 30px rgba(51, 65, 85, 0.02) !important;
        }

        .hero-left-col .btn-hero-primary::before,
        .home-hero .btn-hero-primary::before,
        .hero-left-col .btn-primary-large::before,
        .home-hero .btn-primary-large::before,
        .btn-hero-primary::before,
        .home-hero .btn-primary-large::before,
        .btn-hero-outline::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(
                140px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
                rgba(255, 255, 255, 0.95),
                transparent 80%
            );
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 0;
        }

        .hero-left-col .btn-hero-primary::after,
        .home-hero .btn-hero-primary::after,
        .hero-left-col .btn-primary-large::after,
        .home-hero .btn-primary-large::after,
        .btn-hero-primary::after,
        .home-hero .btn-primary-large::after,
        .btn-hero-outline::after {
            content: none;
            display: none;
        }

        .hero-left-col .btn-hero-primary:hover::before,
        .home-hero .btn-hero-primary:hover::before,
        .hero-left-col .btn-primary-large:hover::before,
        .home-hero .btn-primary-large:hover::before,
        .btn-hero-primary:hover::before,
        .home-hero .btn-primary-large:hover::before,
        .btn-hero-outline:hover::before {
            opacity: 1;
        }

        .hero-left-col .btn-hero-primary:hover,
        .home-hero .btn-hero-primary:hover,
        .hero-left-col .btn-primary-large:hover,
        .home-hero .btn-primary-large:hover,
        .btn-hero-primary:hover,
        .home-hero .btn-primary-large:hover,
        .btn-hero-outline:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(51, 65, 85, 0.1) !important;
        }

        .btn-hero-outline:hover {
            color: #334155 !important;
        }

        .home-hero h1.hero-main-title {
            max-width: none;
            margin-left: 0;
            margin-right: 0;
        }

        .home-hero p:not(.home-hero-showcase-cap):not(.hero-desc):not(.hero-rody-script):not(.hero-sub-features) {
            font-size: clamp(16px, 1.8vw, 18px);
            line-height: 1.5;
            color: var(--text-muted);
            max-width: 720px;
            margin: 0 auto 24px;
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        .nav-toggle {
            display: none;
            background: var(--surface-plain);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 8px 12px;
            font-size: 18px;
            line-height: 1;
            cursor: pointer;
            color: var(--text-main);
        }

        @media (max-width: 900px) {
            .home-hero-inner {
                flex-direction: column;
                min-height: auto;
                padding: 80px 20px 56px;
                gap: 24px;
                overflow: visible !important;
                pointer-events: none;
            }
            .hero-left-col {
                flex: 0 0 auto;
                max-width: 100%;
                width: 100%;
                padding: 0 24px;
                align-items: center;
                text-align: center;
                z-index: 20;
                pointer-events: auto;
                margin-top: 0;
                transform: none;
            }
            .hero-left-col .hero-rody-script,
            .hero-left-col .hero-sub-features,
            .home-hero p.hero-sub-features {
                text-align: center !important;
                justify-content: center;
                align-self: stretch;
            }
            .hero-left-col .hero-sub-features,
            .home-hero p.hero-sub-features {
                margin-bottom: 36px !important;
                font-size: 21px !important;
                font-weight: 600 !important;
                color: #334155 !important;
            }
            .hero-cta-row {
                justify-content: center;
            }
            .hero-right-col {
                position: absolute !important;
                right: 0;
                top: 0;
                width: 100% !important;
                height: 100% !important;
                margin: 0;
                padding: 0;
                z-index: 1;
                pointer-events: auto;
                overflow: visible !important;
            }
            .hero-right-col {
                padding-bottom: 0;
                align-items: center;
            }
            .spline-stage {
                width: 100% !important;
                height: 100%;
                min-height: 100%;
                max-width: none;
                margin: 0;
                overflow: visible !important;
                -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 82%, rgba(0, 0, 0, 0.5) 95%, transparent 100%);
                mask-image: linear-gradient(to bottom, #000 0%, #000 82%, rgba(0, 0, 0, 0.5) 95%, transparent 100%);
            }
            .spline-robot-frame {
                height: calc(100% + 112px) !important;
                transform: scale(1.0) translateX(4%) translateY(28px) !important;
            }

            .works-grid {
                grid-template-columns: 1fr;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            /* v102 — 모바일 레이아웃 잘림·오버플로우 패치 */
            #viewCreate .wizard-layout,
            .wizard-layout {
                grid-template-columns: 1fr !important;
                padding: 0 16px !important;
            }

            .team-grid {
                grid-template-columns: 1fr !important;
            }

            .batch-container,
            .team-container {
                padding: 20px 16px !important;
            }
        }

        @media (max-height: 860px) {
            .hero-main-title {
                font-size: clamp(36px, 4.2vw, 52px) !important;
                margin-bottom: 16px !important;
            }
            .hero-left-col .hero-rody-script,
            p.hero-rody-script {
                font-size: 32px !important;
                margin-bottom: 14px !important;
            }
            .hero-left-col .hero-sub-features,
            .home-hero p.hero-sub-features {
                font-size: 21px !important;
                font-weight: 600 !important;
                color: #334155 !important;
                margin-bottom: 36px !important;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-scroll-hint {
                animation: none;
                opacity: 0.65;
            }
            .hero-scroll-mouse::after,
            .hero-scroll-chevron {
                animation: none;
            }
        }

        /* 3-Step Process (Bento style) */
        .section-title {
            text-align: center;
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--text-main);
            margin-top: 40px;
            margin-bottom: 32px;
        }

        .bento-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto 80px auto;
            padding: 0 20px;
        }

        .bento-card {
            background-color: var(--surface-plain);
            border: none;
            border-radius: var(--radius-lg);
            padding: 32px;
            box-shadow: var(--shadow-md);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .bento-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .bento-card-num {
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: rgba(255, 107, 0, 0.18);
            margin-bottom: 12px;
        }

        .bento-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-main);
        }

        .bento-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* Templates Section */
        .templates-gallery {
            max-width: 1200px;
            margin: 0 auto 100px auto;
            padding: 0 20px;
        }

        .templates-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .template-card {
            background-color: var(--surface-plain);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .template-card:hover {
            transform: scale(1.02);
        }

        .template-img-holder {
            height: 200px;
            background-color: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 14px;
            position: relative;
        }

        .template-gradient-1 {
            background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
        }
        .template-gradient-2 {
            background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
        }
        .template-gradient-3 {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
        }

        .template-info {
            padding: 20px;
        }

        .template-info h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--text-main);
        }

        .template-info p {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* 2. WIZARD CREATE VIEW */
        #viewCreate.view-content {
            padding-top: 102px;
        }

        #viewCreate .wizard-layout {
            margin: 4px auto 12px;
            gap: 24px;
            padding: 0 32px;
            align-items: stretch;
        }

        .wizard-layout {
            display: grid;
            grid-template-columns: 380px 1fr;
            gap: 32px;
            max-width: 1400px;
            margin: 16px auto;
            padding: 0 40px;
            align-items: start;
        }

        @media (max-height: 980px) {
            #viewCreate .wizard-layout {
                margin: 0 auto 8px;
                gap: 16px;
            }
            #viewCreate .form-panel {
                padding: 14px 16px;
            }
            #viewCreate .form-title {
                margin-bottom: 8px;
                padding-bottom: 6px;
            }
            #viewCreate .input-group {
                margin-bottom: 10px;
            }
            #viewCreate .form-hint {
                margin-bottom: 2px;
            }
            #viewCreate .upload-zone {
                padding: 10px 12px;
            }
            #viewCreate .form-panel textarea#specList {
                height: 70px;
                min-height: 70px;
            }
            .wizard-layout {
                grid-template-columns: 340px 1fr;
            }
        }

        .form-panel {
            border-radius: var(--radius-lg);
            padding: 28px;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-sm);
        }

        .form-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-main);
            border-bottom: 1px solid var(--border-subtle);
            padding-bottom: 12px;
        }

        .input-group {
            margin-bottom: 20px;
        }

        .input-label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-main);
        }

        .input-field {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 14px;
            background-color: var(--surface-muted);
            outline: none;
            transition: all 0.2s ease;
        }

        .input-field:focus {
            border-color: #FF6B00;
            background-color: var(--surface-plain);
            box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
        }

        .chip-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .chip-item {
            padding: 8px 14px;
            background-color: var(--surface-muted);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .chip-item.active {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .chip-item:hover:not(.active) {
            background-color: #f1f5f9;
        }

        .upload-zone {
            border: 2px dashed var(--border-color);
            border-radius: 8px;
            padding: 24px;
            text-align: center;
            cursor: pointer;
            background-color: var(--surface-muted);
            transition: all 0.2s ease;
        }

        .upload-zone:hover {
            border-color: #FF6B00;
            background-color: #FFF7ED;
        }

        .upload-icon {
            font-size: 24px;
            margin-bottom: 8px;
            color: var(--text-muted);
        }

        .upload-text {
            font-size: 12px;
            color: var(--text-muted);
        }

        .upload-attached {
            list-style: none;
            padding: 10px 0 0;
            margin: 0;
            text-align: left;
            font-size: 12px;
            font-weight: 600;
            color: #16a34a;
        }

        .upload-zone.has-files .upload-zone-prompt {
            display: none;
        }

        .upload-zone.has-files {
            padding: 12px;
        }

        .upload-zone-files {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            width: 100%;
        }

        .attach-photo-item {
            position: relative;
            flex-shrink: 0;
        }

        .photo-thumb {
            width: 72px;
            height: 72px;
            border-radius: 8px;
            object-fit: cover;
            border: 1px solid var(--border-color);
            box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
            display: block;
        }

        .attach-remove-btn {
            position: absolute;
            top: -5px;
            right: -5px;
            width: 20px;
            height: 20px;
            border: 2px solid #fff;
            border-radius: 50%;
            background: rgba(15, 23, 42, 0.82);
            color: #fff;
            font-size: 13px;
            line-height: 1;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            z-index: 2;
        }

        .attach-remove-btn:hover {
            background: #DC2626;
        }

        .upload-zone--ok {
            border-color: #16a34a !important;
            background-color: #f0fdf4 !important;
        }

        #uploadPasteStatus[data-state="loading"] { color: #92400e; }
        #uploadPasteStatus[data-state="ok"] { color: #15803d; font-weight: 600; }
        #uploadPasteStatus[data-state="err"] { color: #b91c1c; }
        .input-field.field-ai-filled {
            border-color: #86efac !important;
            box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
        }

        .upload-zone--drag {
            border-color: #FF6B00 !important;
            background-color: #FFF7ED !important;
        }

        .upload-zone--focus {
            outline: 2px solid rgba(255, 107, 0, 0.35);
            outline-offset: 2px;
        }

        .btn-submit {
            width: 100%;
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-family: 'Pretendard', sans-serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 4px 10px var(--primary-shadow);
        }

        .btn-submit:hover {
            background-color: var(--primary-dark);
            transform: translateY(-1px);
        }

        /* Create tab — compact form (Anti §5 · hint margin reset) */
        #viewCreate .form-panel {
            padding: 20px 24px;
        }

        #viewCreate .form-panel .form-title {
            font-size: 17px;
            margin-bottom: 12px;
            padding-bottom: 8px;
        }

        #viewCreate .form-panel .input-group {
            margin-bottom: 12px;
        }

        #viewCreate .form-panel p.form-hint {
            font-size: 12px;
            line-height: 1.4;
            margin: 0 0 8px;
            color: var(--text-muted);
        }

        #viewCreate .form-panel .input-label {
            margin-bottom: 4px;
        }

        #viewCreate .form-panel .input-field {
            padding: 10px 12px;
        }

        #viewCreate .form-panel .upload-zone {
            padding: 16px;
        }

        #viewCreate .form-panel .upload-icon {
            font-size: 20px;
            margin-bottom: 4px;
        }

        #viewCreate .form-panel textarea#specList {
            height: 70px;
            min-height: 70px;
            resize: vertical;
        }

        #viewCreate .form-panel .btn-submit {
            padding: 12px;
            margin-top: 4px;
        }

        @media (max-height: 980px) {
            #viewCreate .form-panel {
                max-height: none;
                overflow: visible;
                padding: 18px 20px;
            }
            #viewCreate .form-panel p.form-hint {
                margin-bottom: 6px;
            }
            #viewCreate .form-panel .input-group {
                margin-bottom: 10px;
            }
            #viewCreate .form-panel .upload-zone {
                padding: 12px 14px;
            }
        }

        /* Wizard Right Preview */
        .preview-pane {
            background-color: var(--surface-plain);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 32px;
            min-height: 600px;
            box-shadow: var(--shadow-sm);
        }

        #viewCreate .preview-pane {
            display: flex;
            flex-direction: column;
            min-height: 0;
            height: 100%;
            padding: 24px 24px 0;
            gap: 0;
        }

        .preview-pane-body {
            flex: 1;
            min-height: 0;
            overflow-y: auto;
            padding-bottom: 16px;
        }

        #viewCreate .wizard-placeholder {
            height: auto;
            flex: 1;
            min-height: 200px;
        }

        /* Generation Process & Timeline */
        .timeline-box {
            display: none;
            margin-bottom: 32px;
        }

        .progress-container {
            background-color: #f1f5f9;
            height: 8px;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 16px;
            position: relative;
        }

        .progress-bar {
            height: 100%;
            background-color: var(--primary);
            width: 0%;
            transition: width 0.1s linear;
        }

        .progress-status {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .timeline-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }

        .timeline-step {
            text-align: center;
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .timeline-step.active {
            color: var(--primary);
            font-weight: 700;
        }

        .wizard-placeholder {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 500px;
            text-align: center;
            color: var(--text-muted);
        }

        .placeholder-icon {
            font-size: 52px;
            margin-bottom: 16px;
            color: #cbd5e1;
        }

        /* 3. RESULT CANVAS EDITOR VIEW */
        .editor-layout {
            display: grid;
            grid-template-columns: 220px 1fr 300px;
            gap: 24px;
            max-width: 100%;
            height: calc(100vh - 92px);
            padding: 24px;
            background-color: #f1f5f9;
        }

        /* Left Rail: Slides list */
        .thumbnails-rail {
            background-color: var(--surface-plain);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 16px 12px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
            box-shadow: var(--shadow-xs);
        }

        .rail-title {
            font-size: 12px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .thumb-item {
            border: 2px solid transparent;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.2s ease;
            position: relative;
            background-color: var(--surface-muted);
            aspect-ratio: 16/10;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .thumb-item.active {
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.15);
        }

        .thumb-num {
            position: absolute;
            top: 4px;
            left: 4px;
            background: rgba(15, 23, 42, 0.6);
            color: white;
            font-size: 10px;
            font-weight: 700;
            padding: 1px 4px;
            border-radius: 3px;
            z-index: 2;
        }

        /* 실제 export PNG 기반 썸네일이 들어오면 라벨을 하단 바로 */
        .thumb-item.thumb-has-preview .thumb-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.82);
            backdrop-filter: blur(2px);
            font-size: 10px;
            padding: 2px 4px;
            z-index: 2;
        }

        .thumb-label {
            font-size: 11px;
            font-weight: 600;
            color: var(--text-main);
            text-align: center;
            padding: 4px;
        }

        /* Center Canvas Workspace */
        .canvas-area {
            display: flex;
            flex-direction: column;
            gap: 16px;
            height: 100%;
            overflow: hidden;
        }

        .canvas-header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 8px 12px;
            background-color: var(--surface-plain);
            padding: 12px 24px;
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
        }

        .editor-flow-hint {
            flex: 1 1 100%;
            margin: 0;
            font-size: 12px;
            color: var(--text-muted, #64748b);
        }

        .canvas-actions button.btn-action-secondary {
            background: transparent;
            border: 1px solid var(--border-subtle);
            color: var(--text-main);
            font-size: 12px;
            padding: 8px 12px;
        }

        .project-meta-name {
            font-size: 15px;
            font-weight: 700;
        }

        .canvas-actions {
            display: flex;
            gap: 8px;
            position: relative;
        }

        .canvas-actions button {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            border: 1px solid var(--border-subtle);
            background-color: var(--surface-plain);
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .canvas-actions button.btn-action-primary {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .canvas-actions button.btn-action-primary:hover {
            background-color: var(--primary-dark);
        }

        .canvas-actions button:hover:not(.btn-action-primary) {
            background-color: var(--surface-muted);
        }

        /* UI TABS IN RESULT VIEWER */
        .workspace-tabs {
            display: flex;
            background: #F1F5F9;
            padding: 4px;
            border-radius: 8px;
            margin-bottom: 8px;
            align-self: center;
            gap: 4px;
        }

        .tab-btn {
            padding: 6px 16px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            border: none;
            background: transparent;
            color: var(--text-muted);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .tab-btn.active {
            background: var(--surface-plain);
            color: var(--text-main);
            box-shadow: var(--shadow-sm);
        }

        .canvas-viewport {
            flex: 1;
            overflow-y: auto;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding: 20px;
            background-color: #cbd5e1;
            border-radius: 12px;
        }

        /* Slide Canvas (860px Centered) */
        .slide-canvas {
            width: 860px;
            min-height: 480px;
            background-color: var(--surface-plain);
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            padding: 48px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            transition: all 0.3s ease;
        }

        /* Slide View Panels based on Tabs */
        .tab-view-panel {
            display: none;
            width: 100%;
            height: 100%;
        }

        .tab-view-panel.active {
            display: block;
        }

        /* 3D Glassmorphism Image View Frame */
        .mock-image-container {
            width: 100%;
            height: 320px;
            border-radius: 10px;
            background: #f1f5f9;
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .pdp-integrated-frame {
            height: 420px;
            border: none;
            border-radius: 16px;
            box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
        }

        .pdp-slide-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 20px 22px 18px;
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.15) 42%, rgba(15, 23, 42, 0.55) 100%);
            pointer-events: none;
        }

        .pdp-overlay-copy .slide-main-h {
            color: #fff;
            font-size: 28px;
            line-height: 1.25;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
            margin: 8px 0 6px;
        }

        .pdp-overlay-copy .slide-sub-h {
            color: rgba(255, 255, 255, 0.92);
            font-size: 14px;
            line-height: 1.5;
            text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
        }

        .pdp-slide-overlay .slide-brand-tag {
            position: static;
            align-self: flex-start;
            background: rgba(255, 107, 0, 0.92);
            color: #fff;
            padding: 4px 10px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 700;
        }

        .pdp-overlay-bento {
            margin-top: auto;
            gap: 10px;
        }

        .pdp-overlay-bento .bento-spec-card {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        #panelPreview.pdp-section-mode .pdp-integrated-frame {
            height: 360px;
        }

        #panelPreview.pdp-section-mode .pdp-slide-overlay {
            background: linear-gradient(180deg, rgba(255, 247, 237, 0.95) 0%, rgba(255, 237, 213, 0.88) 100%);
        }

        #panelPreview.pdp-section-mode .pdp-overlay-copy .slide-main-h {
            color: #9a3412;
            text-shadow: none;
            font-size: 24px;
        }

        #panelPreview.pdp-section-mode .pdp-overlay-copy .slide-sub-h {
            color: #7c2d12;
            text-shadow: none;
        }

        #panelPreview.pdp-section-mode .pdp-slide-overlay .slide-brand-tag {
            background: #ff6b00;
        }

        /* ============================================================
           식품형 HERO 프리미엄 v2 — 사진 풀 + 하단 크림 시트 (글·사진 분리)
           ============================================================ */
        .pdp-slide-card.food-hero-premium {
            --accent-color: #ff7a00;
            --bg-color: #fff7ec;
            --surface-color: #ffffff;
            --overlay-opacity: 0;
            --headline-size: 26px;
            --subheadline-size: 14px;
            --label-size: 11px;
            --hero-image-scale: 1;
            --image-brightness: 1.08;
            --image-contrast: 1.08;
            --image-saturation: 1.12;
            --card-radius: 16px;
            --card-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);
            --card-gap: 10px;
            --section-padding-x: 22px;
            --section-padding-y: 18px;
            --content-gap: 10px;
            background: var(--bg-color);
            border-radius: 20px;
            padding: 0;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
        }

        .food-hero-premium .pdp-integrated-frame {
            height: 560px;
            border-radius: 20px;
            background: var(--bg-color);
            position: relative;
            overflow: hidden;
        }

        .food-hero-premium .pdp-integrated-frame::after {
            display: none;
        }

        /* 사진: 상단 58% 풀블리드 — scale 없음(흐림 방지) */
        .food-hero-premium #slideImage,
        .food-hero-premium .mock-image-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 58%;
            object-fit: cover;
            object-position: center 40%;
            transform: none !important;
            filter: brightness(var(--image-brightness)) contrast(var(--image-contrast)) saturate(var(--image-saturation));
            z-index: 0;
        }

        .food-hero-premium .mock-image-container img:hover {
            transform: none !important;
        }

        /* 하단 크림 시트 — overlay는 전체 높이, 콘텐츠만 하단 */
        .food-hero-premium .pdp-slide-overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            gap: 0;
            padding: 0;
            background: transparent !important;
            pointer-events: none;
        }

        .food-hero-premium .slide-brand-tag {
            position: absolute;
            top: 14px;
            left: 16px;
            z-index: 4;
            background: var(--accent-color);
            color: #fff;
            font-size: var(--label-size);
            letter-spacing: 0.05em;
            padding: 5px 11px;
            box-shadow: 0 4px 14px rgba(255, 122, 0, 0.35);
        }

        .food-hero-premium .pdp-overlay-copy {
            background: linear-gradient(180deg, rgba(255, 247, 236, 0.98) 0%, var(--bg-color) 100%);
            border-radius: 20px 20px 0 0;
            padding: 18px 22px 6px;
            box-shadow: 0 -10px 36px rgba(15, 23, 42, 0.07);
            width: 100%;
        }

        .food-hero-premium .pdp-overlay-bento {
            margin-top: 0;
            gap: var(--card-gap);
            background: var(--bg-color);
            padding: 6px 18px 18px;
            width: 100%;
        }

        .food-hero-premium .pdp-overlay-copy .slide-main-h {
            color: #2d1a0e;
            font-size: var(--headline-size);
            font-weight: 800;
            line-height: 1.28;
            letter-spacing: -0.02em;
            text-shadow: none;
            margin: 0 0 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .food-hero-premium .pdp-overlay-copy .slide-sub-h {
            color: #6b5344;
            font-size: var(--subheadline-size);
            font-weight: 500;
            line-height: 1.4;
            text-shadow: none;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .food-hero-premium .pdp-overlay-bento .bento-spec-card {
            background: var(--surface-color);
            border: 1px solid rgba(255, 122, 0, 0.08);
            border-radius: var(--card-radius);
            box-shadow: var(--card-shadow);
            backdrop-filter: none;
            padding: 12px 8px;
        }

        .food-hero-premium .pdp-overlay-bento .bento-spec-card .val {
            color: var(--accent-color);
            font-weight: 800;
            font-size: 13px;
        }

        .food-hero-premium .pdp-overlay-bento .bento-spec-card .lbl {
            color: #64748b;
            font-weight: 600;
            font-size: 11px;
        }

        .food-hero-premium .mock-image-label {
            display: none;
        }

        .mock-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            cursor: pointer;
        }

        .mock-image-container img:hover {
            transform: scale(1.03);
        }

        .mock-image-label {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(15, 23, 42, 0.75);
            backdrop-filter: blur(4px);
            color: white;
            font-size: 11px;
            padding: 4px 10px;
            border-radius: 20px;
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
            pointer-events: none;
        }

        /* Bento Spec Grid */
        .bento-spec-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            width: 100%;
            margin-top: 24px;
        }

        .bento-spec-card {
            background-color: var(--surface-muted);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 16px;
            text-align: center;
            box-shadow: var(--shadow-sm);
        }

        .bento-spec-card .val {
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }

        .bento-spec-card .lbl {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
            font-weight: 500;
        }

        /* A/B Compare Panel Split Layout */
        .ab-split-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            width: 100%;
        }

        .ab-card {
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 24px;
            background: var(--surface-plain);
            position: relative;
        }

        .ab-card.active-side {
            border-color: var(--primary);
            box-shadow: 0 0 0 2px var(--primary-light);
        }

        .ab-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
        }

        .ab-badge.a-side {
            background-color: var(--primary-light);
            color: var(--primary);
        }

        .ab-badge.b-side {
            background-color: var(--accent-light);
            color: var(--accent);
        }

        .ab-card h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-main);
        }

        .ab-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* SEO Audit Panel */
        .seo-panel {
            width: 100%;
        }

        .seo-summary-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px;
            background: var(--surface-muted);
            border-radius: 10px;
            border: 1px solid var(--border-color);
            margin-bottom: 20px;
        }

        .seo-score-badge {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: var(--success-light);
            color: var(--success);
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
            font-weight: 700;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--success);
        }

        .seo-checklist {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .seo-check-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        .seo-check-item.pass {
            background-color: var(--success-light);
            border-color: rgba(16, 185, 129, 0.2);
        }

        .seo-check-item.warning {
            background-color: var(--accent-light);
            border-color: rgba(249, 115, 22, 0.2);
        }

        .seo-check-icon {
            font-size: 16px;
        }

        .seo-check-body h5 {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 2px;
        }

        .seo-check-body p {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Bottom chat edit bar (legacy — composer moved to tool panel) */
        .chat-edit-bar {
            display: none;
        }

        /* 로디 AI 대화창 — 우측 패널 하단 고정 */
        .rody-chat-panel {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .rody-chat-panel--dock {
            flex: 0 0 auto;
            margin-top: auto;
            border-top: 1px solid var(--border-color);
            background: color-mix(in srgb, var(--primary) 4%, var(--surface-plain));
            padding: 14px 0 0;
        }

        #viewCreate .rody-chat-panel--dock {
            margin: 12px -24px 0;
            padding: 14px 24px 18px;
            border-radius: 0 0 16px 16px;
        }

        .rody-chat-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 8px;
        }

        .rody-chat-head-title {
            font-family: 'Dancing Script', cursive;
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }

        .rody-chat-head-status {
            font-size: 11px;
            font-weight: 600;
            color: var(--text-muted);
            background: var(--surface-muted);
            padding: 3px 10px;
            border-radius: 100px;
        }

        .rody-chat-collapse {
            border: 1px solid var(--border-color);
            background: var(--surface-plain);
            color: var(--text-muted);
            width: 28px;
            height: 28px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 11px;
            line-height: 1;
            transition: transform 0.2s ease;
        }

        .rody-chat-panel.is-collapsed .rody-chat-body {
            display: none;
        }

        .rody-chat-panel.is-collapsed .rody-chat-collapse {
            transform: rotate(-90deg);
        }

        .rody-chat-body {
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-height: 0;
        }

        .rody-chat-thread {
            flex: 1;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 8px 10px;
            background: var(--surface-muted);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            min-height: 120px;
            max-height: min(220px, 28vh);
        }

        .tool-panel .rody-chat-panel--dock .rody-chat-thread {
            max-height: min(200px, 24vh);
        }

        .rody-chat-msg {
            display: flex;
            gap: 8px;
            align-items: flex-start;
        }

        .rody-chat-msg.is-user {
            flex-direction: row-reverse;
        }

        .rody-chat-avatar {
            flex: 0 0 28px;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .rody-chat-msg.is-user .rody-chat-avatar {
            background: #e2e8f0;
        }

        .rody-chat-bubble {
            max-width: 88%;
            padding: 8px 12px;
            border-radius: 12px;
            font-size: 12px;
            line-height: 1.45;
            color: var(--text-main);
            background: var(--surface-plain);
            border: 1px solid var(--border-color);
        }

        .rody-chat-msg.is-user .rody-chat-bubble {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        .rody-chat-msg.is-rody .rody-chat-bubble {
            border-color: color-mix(in srgb, var(--primary) 25%, var(--border-color));
        }

        .rody-chat-composer {
            display: flex;
            gap: 8px;
        }

        .rody-chat-attach-preview {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
            padding: 6px 8px;
            border-radius: 8px;
            background: #f0fdf4;
            border: 1px solid #86efac;
        }

        .rody-chat-attach-thumb {
            width: 48px;
            height: 48px;
            object-fit: cover;
            border-radius: 6px;
            border: 1px solid var(--border-color);
        }

        .rody-chat-attach-label {
            flex: 1;
            font-size: 11px;
            color: #15803d;
        }

        .rody-chat-attach-clear {
            border: none;
            background: transparent;
            font-size: 18px;
            line-height: 1;
            cursor: pointer;
            color: #64748b;
        }

        .rody-chat-msg-img {
            display: block;
            max-width: 100%;
            max-height: 120px;
            border-radius: 8px;
            margin-bottom: 6px;
            border: 1px solid var(--border-color);
        }

        .rody-chat-bubble span {
            display: block;
        }

        .rody-chat-composer .chat-input {
            font-size: 13px;
            padding: 8px 12px;
        }

        .rody-chat-composer .btn-chat-send {
            padding: 0 14px;
            font-size: 13px;
            white-space: nowrap;
        }

        .chat-input {
            flex: 1;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 10px 16px;
            font-size: 14px;
            outline: none;
            background-color: var(--surface-muted);
        }

        .chat-input:focus {
            border-color: var(--primary);
            background-color: var(--surface-plain);
        }

        .btn-chat-send {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-chat-send:hover {
            background-color: var(--primary-dark);
        }

        /* Right Tool Panel */
        .tool-panel {
            background-color: var(--surface-plain);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 0;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            min-height: 0;
        }

        .tool-panel-scroll {
            flex: 1;
            min-height: 0;
            overflow-y: auto;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .tool-panel .rody-chat-panel--dock {
            padding: 14px 20px 18px;
        }

        .tool-section-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-main);
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 8px;
        }

        .tool-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            padding: 10px 12px;
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            background-color: var(--surface-plain);
            color: var(--text-main);
            font-size: 13px;
            font-weight: 500;
            text-align: left;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .tool-btn:hover {
            background-color: var(--surface-muted);
            border-color: var(--text-main);
        }

        /* Copy Quality Score Panel inside tools */
        .score-box {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(255, 133, 51, 0.05) 100%);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            margin-bottom: 12px;
        }

        .score-circle-container {
            position: relative;
            width: 60px;
            height: 60px;
        }

        .score-circle-svg {
            transform: rotate(-90deg);
        }

        .score-circle-bg {
            fill: none;
            stroke: var(--border-color);
            stroke-width: 4;
        }

        .score-circle-val {
            fill: none;
            stroke: var(--primary);
            stroke-width: 4;
            stroke-dasharray: 176;
            stroke-dashoffset: 22; /* 87.5% filled */
            stroke-linecap: round;
            transition: stroke-dashoffset 0.5s ease;
        }

        .score-number {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
            font-weight: 700;
            font-size: 16px;
            color: var(--primary);
        }

        .score-details h6 {
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .score-details p {
            font-size: 11px;
            color: var(--text-muted);
        }

        /* Export Popover/Dropdown Menu simulation */
        .export-dropdown {
            position: absolute;
            bottom: 45px;
            right: 0;
            background: var(--surface-plain);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            display: none;
            flex-direction: column;
            width: 220px;
            z-index: 100;
        }

        .export-dropdown.active {
            display: flex;
        }

        .export-dropdown-item {
            padding: 10px 16px;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            text-align: left;
            border: none;
            background: transparent;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-main);
            width: 100%;
        }

        .export-dropdown-item:hover {
            background-color: var(--surface-muted);
        }

        .export-dropdown-item:not(:last-child) {
            border-bottom: 1px solid var(--border-color);
        }

        /* BATCH & TEAM VIEWS */
        .batch-container,
        .team-container {
            max-width: 960px;
            margin: 32px auto;
            padding: 32px 40px;
        }

        .team-container {
            max-width: 1200px;
        }

        .batch-preview-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            font-size: 14px;
        }

        .batch-preview-table th,
        .batch-preview-table td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border-subtle);
            text-align: left;
        }

        .batch-preview-table th {
            font-weight: 600;
            color: var(--text-muted);
            font-size: 12px;
            text-transform: uppercase;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 24px;
        }

        .team-card {
            padding: 24px;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-sm);
        }

        .team-usage {
            padding: 20px 24px;
            border-radius: 12px;
            margin-bottom: 24px;
        }

        .usage-bar-wrap {
            height: 8px;
            background: var(--surface-muted);
            border-radius: 4px;
            margin: 8px 0;
            overflow: hidden;
        }

        .usage-bar {
            height: 100%;
            background: var(--primary);
            border-radius: 4px;
        }

        .team-member-list {
            list-style: none;
            padding: 0;
            margin: 12px 0 0;
        }

        .team-member-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            font-size: 14px;
            border-bottom: 1px solid var(--border-subtle);
        }

        .team-member-list li:last-child {
            border-bottom: none;
        }

        /* 4. MY WORKS VIEW */
        .works-container {
            max-width: 1200px;
            margin: 32px auto;
            padding: 0 40px;
        }

        .works-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 24px;
        }

        .work-card {
            background-color: var(--surface-plain);
            border: none;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .work-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .work-card-body {
            padding: 24px;
        }

        .work-card-tag {
            background-color: var(--primary-light);
            color: var(--primary);
            font-family: 'Pretendard', sans-serif;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 8px;
            display: inline-block;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .work-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 8px;
        }

        .work-card p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .work-card-footer {
            border-top: 1px solid var(--border-subtle);
            padding: 14px 24px;
            background-color: var(--surface-muted);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .btn-edit-work {
            background-color: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
            padding: 7px 16px;
            border-radius: 8px;
            font-family: 'Pretendard', sans-serif;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-edit-work:hover {
            background-color: var(--primary);
            color: white;
        }

        /* 5. PRICING VIEW */
        .pricing-container {
            max-width: 1200px;
            margin: 48px auto;
            padding: 0 40px;
            text-align: center;
        }

        .pricing-container--fit {
            margin: 40px auto 56px;
            padding: 0 40px 32px;
        }

        #viewPricing.view-content.active {
            min-height: calc(100vh - 72px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-bottom: 32px;
        }

        .billing-toggle--hero {
            display: inline-flex;
            gap: 12px;
            padding: 0;
            margin: 0 auto 20px;
            background: transparent;
            border: none;
            border-radius: 0;
        }

        .billing-toggle--hero .billing-opt {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            min-width: 120px;
            padding: 14px 28px !important;
            font-size: 15px !important;
            font-weight: 700 !important;
            border-radius: 8px !important;
        }

        .billing-toggle--hero .billing-opt.active.btn-hero-primary {
            color: #334155 !important;
        }

        .billing-toggle--hero .billing-opt:not(.active).btn-hero-outline {
            color: #64748B !important;
        }

        .billing-toggle {
            display: inline-flex;
            gap: 4px;
            padding: 4px;
            margin: 0 auto 20px;
            background: var(--surface-muted, #f1f5f9);
            border-radius: 999px;
            border: 1px solid var(--border-subtle);
        }

        .billing-opt {
            position: relative;
            overflow: hidden;
            isolation: isolate;
            border: none;
            background: transparent;
            padding: 10px 22px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-muted);
            cursor: pointer;
            transition: color 0.2s ease, box-shadow 0.2s ease;
        }

        .billing-opt::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(
                120px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
                rgba(255, 255, 255, 0.95),
                transparent 80%
            );
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 0;
        }

        .billing-opt:hover::before {
            opacity: 1;
        }

        .billing-opt.active {
            background: #fff;
            color: var(--text-main);
            box-shadow: var(--shadow-sm);
        }

        .rody-chat-panel--dev .rody-chat-composer,
        .rody-chat-panel--dev .rody-chat-thread {
            opacity: 0.45;
            pointer-events: none;
        }

        .rody-chat-dev-msg {
            font-size: 12px;
            color: var(--text-muted);
            padding: 8px 14px 12px;
            margin: 0;
            text-align: left;
        }

        .billing-save {
            color: var(--primary);
            font-size: 12px;
            margin-left: 6px;
            font-weight: 700;
        }

        .pricing-credit-note {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0 auto 28px;
            max-width: 640px;
        }

        .pricing-legal {
            text-align: center;
            margin-top: 10px;
            font-size: 13px;
        }

        .pricing-legal a {
            color: var(--text-muted);
            text-decoration: none;
        }

        .pricing-legal a:hover {
            color: var(--primary);
            text-decoration: underline;
        }

        .pricing-footnote {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 20px;
        }

        .tag-dev {
            display: inline-block;
            padding: 1px 8px;
            border-radius: 999px;
            background: #fef3c7;
            color: #92400e;
            font-size: 11px;
            font-weight: 600;
        }

        .pricing-grid--compact {
            gap: 16px;
            max-width: 960px;
        }

        .pricing-container--compact .pricing-hero {
            margin-bottom: 16px;
        }

        .pricing-container--compact .pricing-hero h2 {
            font-size: 28px;
            margin-bottom: 8px;
        }

        .pricing-container--compact .pricing-hero p {
            font-size: 14px;
            max-width: 560px;
        }

        .pricing-container--compact .price-card {
            padding: 22px 18px;
        }

        .price-features--compact {
            margin-bottom: 16px !important;
        }

        .price-features--compact li {
            font-size: 13px;
            margin-bottom: 8px !important;
        }

        .pricing-container--compact .price-value {
            font-size: 28px;
            margin-bottom: 14px;
        }

        .price-annual-note {
            display: block;
            font-size: 12px;
            font-weight: 500;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .pricing-hero {
            margin-bottom: 48px;
        }

        .pricing-hero h2 {
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .pricing-hero p {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 500px;
            margin: 0 auto;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: stretch;
            max-width: 1000px;
            margin: 0 auto;
        }

        .price-card {
            background-color: var(--surface-plain);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            box-shadow: var(--shadow-sm);
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .price-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .price-card.popular {
            border-color: var(--primary);
            box-shadow: var(--shadow-lg), 0 0 0 1px var(--primary);
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary);
            color: white;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 100px;
            text-transform: uppercase;
        }

        .price-tier-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .price-value {
            font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 24px;
        }

        .price-value span {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
        }

        .price-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .price-features li {
            font-size: 14px;
            color: var(--text-main);
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            line-height: 1.5;
            word-break: keep-all;
        }

        .price-features li::before {
            content: '✓';
            color: var(--success);
            font-weight: bold;
            flex-shrink: 0;
            line-height: 1.5;
        }

        .btn-subscribe {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: center;
        }

        .btn-subscribe.solid {
            background-color: var(--primary);
            color: white;
            border: none;
        }

        .btn-subscribe.solid:hover {
            background-color: var(--primary-dark);
        }

        .btn-subscribe.outline {
            background-color: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-main);
        }

        .btn-subscribe.outline:hover {
            border-color: var(--text-main);
            background-color: var(--surface-muted);
        }

        .btn-subscribe:disabled,
        .btn-subscribe.busy {
            opacity: 0.72;
            cursor: wait;
        }

        /* MODAL COMMON STYLING */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.4);
            backdrop-filter: blur(4px);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background-color: var(--surface-plain);
            border-radius: var(--radius-xl);
            padding: 32px;
            width: 440px;
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 20px;
            cursor: pointer;
            color: var(--text-muted);
            border: none;
            background: transparent;
        }

        .modal-close:hover {
            color: var(--text-main);
        }

        .modal-h {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        /* Login Modal Details */
        .social-login-btn {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-color);
            background-color: var(--surface-plain);
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            transition: all 0.2s ease;
            margin-bottom: 16px;
        }

        .social-login-btn:hover {
            background-color: var(--surface-muted);
            border-color: var(--text-main);
        }

        .divider {
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--text-muted);
            font-size: 12px;
            margin: 16px 0;
        }

        .divider::before, .divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid var(--border-color);
        }

        .divider:not(:empty)::before {
            margin-right: .5em;
        }

        .divider:not(:empty)::after {
            margin-left: .5em;
        }

        /* Block Add Modal Details */
        .block-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-height: 300px;
            overflow-y: auto;
        }

        .block-option {
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: left;
        }

        .block-option:hover {
            border-color: var(--primary);
            background-color: var(--primary-light);
        }

        .block-option h5 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .block-option p {
            font-size: 12px;
            color: var(--text-muted);
        }

/* v22 — HERO video + glass copy (HERO 1장만) */
.slide-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-media-scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.15) 52%, transparent 100%);
}
#panelPreview.hero-video-mode {
    position: relative;
}
#panelPreview.hero-video-mode .mock-image-container {
    height: 400px;
    border: 1px solid rgba(0, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.25);
    position: relative;
}
#panelPreview.hero-video-mode #slideImage {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#panelPreview.hero-video-mode #slideVideo {
    position: absolute;
    inset: 0;
    z-index: 2;
}
#panelPreview.hero-video-mode .slide-brand-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 4;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 255, 0.35);
    color: #67e8f9;
}
#panelPreview.hero-video-mode .slide-title-area {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 4;
    margin: 0 !important;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
#panelPreview.hero-video-mode .slide-main-h {
    color: #fff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}
#panelPreview.hero-video-mode .slide-sub-h {
    color: #e2e8f0;
}
#panelPreview.hero-video-mode .bento-spec-grid {
    margin-top: 16px;
}

@media (max-width: 768px) {
    header {
        padding: 0;
        height: auto;
        min-height: 70px;
    }

    .header-inner {
        padding: 0 16px;
        flex-wrap: wrap;
        align-content: center;
        gap: 8px;
        min-height: 92px;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    header nav {
        display: none;
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        gap: 8px 12px;
        justify-content: center;
        padding: 0 0 12px;
    }

    header nav.mobile-open {
        display: flex;
    }

    header nav a {
        font-size: 13px;
        white-space: nowrap;
    }

    .header-actions {
        gap: 8px;
    }

    .header-actions .login-btn {
        font-size: 12px;
        padding: 6px 12px;
    }

    nav {
        gap: 24px;
    }

    nav a {
        font-size: 16px !important;
    }

    .home-hero {
        padding: 12px 16px clamp(48px, 7vh, 64px);
    }

    .hero-main-title {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .home-hero-text-wrap .hero-rody-script,
    p.hero-rody-script {
        font-size: clamp(48px, 14vw, 64px) !important;
    }

    .home-hero-text-wrap .hero-sub-features,
    .home-hero p.hero-sub-features {
        font-size: 19px !important;
        color: #334155 !important;
    }

    .home-hero-text-wrap {
        margin-bottom: 10px;
    }

    .home-hero p:not(.home-hero-showcase-cap):not(.hero-desc):not(.hero-rody-script):not(.hero-sub-features) {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .home-hero p.home-hero-showcase-cap {
        margin: 0 0 10px;
    }

    .home-hero .btn-primary-large {
        width: auto;
        max-width: none;
    }

    .bento-steps {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 48px;
    }

    .templates-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-title {
        font-size: 22px;
        padding: 0 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .slide-hero-video { display: none !important; }
}

/* —— 공개 베타 소개 페이지 —— */
.hero-product-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #FF6B00;
    margin: 0 0 10px;
    text-transform: uppercase;
}
.hero-lead {
    font-size: 15px;
    line-height: 1.65;
    color: #475569;
    max-width: 420px;
    margin: 0 0 16px;
    font-weight: 500;
}
.hero-beta-note {
    margin: 14px 0 0;
    font-size: 12px;
    color: #64748b;
    max-width: 420px;
    line-height: 1.5;
}
a.btn-hero-outline {
    text-decoration: none;
    box-sizing: border-box;
}
.beta-status-card {
    max-width: 820px;
    margin: 0 auto 48px;
    padding: 28px 32px;
}
.beta-status-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: #9a3412;
    background: #fff7ed;
    border: 1px solid rgba(154, 52, 18, 0.15);
    border-radius: 999px;
    padding: 5px 12px;
    margin: 0 0 14px;
}
.beta-status-card > p {
    margin: 0 0 12px;
    color: #334155;
    line-height: 1.65;
    font-size: 15px;
}
.beta-status-list {
    margin: 0 0 16px;
    padding-left: 20px;
    color: #475569;
    line-height: 1.7;
    font-size: 14px;
}
.beta-status-contact {
    margin: 0 !important;
    font-size: 14px;
}
.beta-status-contact a {
    color: #FF6B00;
    font-weight: 700;
    text-decoration: none;
}
.slide-flow-section {
    max-width: 900px;
    margin: 0 auto 64px;
    padding: 0 20px;
}
.slide-flow-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}
.slide-flow-list li {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}
.slide-flow-list li span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #FF6B00;
    margin-bottom: 4px;
}
.slide-flow-note {
    text-align: center;
    margin: 16px 0 0;
    font-size: 13px;
    color: #64748b;
}
.price-value--planned {
    font-size: 28px;
    font-weight: 800;
    color: #94a3b8;
    margin: 8px 0 16px;
}
.btn-subscribe:disabled {
    opacity: 0.55;
    cursor: not-allowed !important;
}
.wizard-beta-lock-msg {
    margin-top: 12px;
    font-size: 12px;
    color: #9a3412;
    line-height: 1.5;
}
.public-beta #btnExportZip:disabled,
.public-beta #btnExportMenuTrigger:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
.home-bottom-cta {
    text-align: center;
    padding: 8px 20px 72px;
}
.home-bottom-cta .btn-hero-primary {
    text-decoration: none;
}
a.btn-hero-primary {
    text-decoration: none;
    box-sizing: border-box;
}
.bento-steps--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1100px) {
    .bento-steps--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .bento-steps--four {
        grid-template-columns: 1fr;
    }
    .hero-main-title {
        font-size: clamp(28px, 8vw, 40px) !important;
    }
}
@media (max-width: 900px) {
    .slide-flow-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .logo {
        font-size: 32px !important;
    }
    .logo-beta-tag {
        font-size: 10px !important;
    }
}
