        :root {
            /* Trust blue — Toss-style B2B primary */
            --primary: #3182F6;
            --primary-dark: #1B64DA;
            --primary-hover: #4593FA;
            --primary-soft: #E8F2FF;
            --primary-tint: #F4F8FF;
            --primary-ink: #0F3B8E;

            /* Conversion accent — for the single "money button" CTA */
            --hot: #FF5A1F;
            --hot-dark: #D9430F;
            --hot-soft: #FFF1E9;

            /* Status */
            --secondary: #5E6AD2;
            --accent: #FF8A00;
            --success: #00B871;
            --success-soft: #E6F8F0;
            --warning: #FFB200;
            --warning-soft: #FFF6DD;
            --danger: #F04452;
            --danger-soft: #FFECEE;

            /* Type / surface */
            --text: #191F28;
            --text-strong: #0B0F14;
            --text-secondary: #4E5968;
            --text-tertiary: #8B95A1;
            --text-quaternary: #B0B8C1;
            --bg: #F7F8FA;
            --bg-subtle: #F2F4F6;
            --card-bg: #FFFFFF;
            --ink: #0B0F14;

            /* Border */
            --border: #E5E8EB;
            --border-soft: #F1F3F5;
            --border-strong: #D1D6DB;

            /* Elevation */
            --shadow-sm: 0 1px 2px rgba(13,18,30,0.05);
            --shadow: 0 1px 3px rgba(13,18,30,0.04), 0 4px 12px rgba(13,18,30,0.05);
            --shadow-lg: 0 12px 28px rgba(13,18,30,0.10), 0 4px 8px rgba(13,18,30,0.04);
            --shadow-blue: 0 6px 18px rgba(49,130,246,0.22);
            --shadow-hot: 0 6px 18px rgba(255,90,31,0.26);

            /* Geometry */
            --radius-xs: 6px;
            --radius-sm: 10px;
            --radius: 14px;
            --radius-lg: 18px;
            --radius-xl: 24px;

            --transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            min-height: 100vh;
        }

        /* Header / Navigation */
        .navbar {
            background: rgba(255,255,255,0.96);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0 2rem;
            box-shadow: 0 1px 0 rgba(31,41,51,0.04);
        }

        .navbar-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
            gap: 12px;
        }

        .logo {
            display: flex;
            align-items: flex-end;
            gap: 10px;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            text-decoration: none;
            cursor: pointer;
        }
        .nav-btn-reset {
            border: none;
            background: transparent;
            font-family: inherit;
        }
        .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 11px;
            display: block;
            object-fit: contain;
            flex: 0 0 auto;
            box-shadow: 0 5px 14px rgba(49,130,246,0.28);
        }
        .logo-image {
            display: block;
            width: auto;
            height: 40px;
            max-width: 88px;
            object-fit: contain;
            flex: 0 0 auto;
        }

        .nav-links {
            display: flex;
            gap: 8px;
            align-items: center;
            flex: 1;
            justify-content: center;
        }
        .nav-links a, .nav-btn {
            text-decoration: none;
            color: var(--text-secondary);
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            background: none;
            white-space: nowrap;
        }
        .nav-links a:hover, .nav-btn:hover {
            background: #edf7f4;
            color: var(--primary);
        }
        .nav-links a.active, .nav-btn.active {
            background: #dff3ee;
            color: var(--primary-dark);
        }
        .btn-primary {
            background: var(--primary) !important;
            color: white !important;
            padding: 10px 20px !important;
            font-weight: 600 !important;
            box-shadow: 0 2px 8px rgba(15,118,110,0.22);
        }
        .btn-primary:hover {
            background: var(--primary-dark) !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(15,118,110,0.28);
        }
        .btn-outline {
            border: 2px solid var(--primary) !important;
            color: var(--primary) !important;
            font-weight: 600 !important;
        }
        .btn-ghost-light {
            background: rgba(255,255,255,0.08) !important;
            color: white !important;
            border: 1px solid rgba(255,255,255,0.22) !important;
            box-shadow: none !important;
        }
        .btn-ghost-light:hover {
            background: rgba(255,255,255,0.14) !important;
            transform: translateY(-1px);
        }

        .auth-status {
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: 120px;
            justify-content: flex-end;
        }

        .auth-email {
            max-width: 180px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            color: var(--text-secondary);
            font-size: 0.82rem;
            font-weight: 600;
        }

        .auth-pill {
            padding: 6px 10px;
            border-radius: 999px;
            background: #f1f3f4;
            color: var(--text-secondary);
            font-size: 0.8rem;
            font-weight: 700;
        }

        /* Main Container */
        .main-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1.5rem;
        }

        /* Hero Section */
        .hero .subtitle,
        .ops-hero .subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }
        .hero-badges {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        .badge {
            background: white;
            border: 1px solid var(--border);
            padding: 8px 16px;
            border-radius: 24px;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: var(--shadow);
        }

        .conversion-hero {
            display: grid;
            grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.85fr);
            gap: 24px;
            align-items: stretch;
            margin: 0 0 1rem;
            padding: 2rem;
            background:
                linear-gradient(135deg, rgba(17,24,39,0.98), rgba(15,23,42,0.96)),
                repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 26px);
            border: 1px solid #1f2937;
            border-radius: var(--radius);
            color: white;
            box-shadow: var(--shadow-lg);
        }

        .conversion-copy {
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 420px;
        }

        .conversion-copy .eyebrow {
            color: #67e8f9;
        }

        .conversion-copy h1 {
            margin: 0 0 1rem;
            max-width: 760px;
            color: #f8fafc;
            font-size: 3rem;
            line-height: 1.08;
            font-weight: 850;
        }

        .conversion-copy .subtitle {
            max-width: 760px;
            color: #cbd5e1;
            font-size: 1.08rem;
            margin-bottom: 1.5rem;
        }

        .hero-proof {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 16px;
        }

        .hero-proof span {
            display: inline-flex;
            align-items: center;
            padding: 7px 10px;
            border-radius: 999px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.14);
            color: #dbeafe;
            font-size: 0.8rem;
            font-weight: 700;
        }

        .report-preview {
            align-self: center;
            background: #f8fafc;
            color: var(--text);
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: var(--radius);
            padding: 1rem;
            box-shadow: 0 24px 70px rgba(0,0,0,0.3);
        }

        .report-preview-top,
        .preview-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .preview-kicker {
            display: block;
            margin-bottom: 3px;
            color: var(--primary);
            font-size: 0.72rem;
            font-weight: 850;
            text-transform: uppercase;
        }

        .preview-status {
            padding: 5px 9px;
            border-radius: 999px;
            background: #dcfce7;
            color: #166534;
            font-size: 0.75rem;
            font-weight: 850;
        }

        .preview-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin: 1rem 0;
        }

        .preview-metrics div,
        .preview-row {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
        }

        .preview-metrics div {
            padding: 10px;
        }

        .preview-metrics span,
        .preview-row span,
        .preview-footer span {
            display: block;
            color: var(--text-secondary);
            font-size: 0.78rem;
        }

        .preview-metrics strong {
            display: block;
            margin-top: 2px;
            font-size: 1.15rem;
        }

        .preview-list {
            display: grid;
            gap: 8px;
        }

        .preview-row {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 12px;
            align-items: center;
            padding: 12px;
        }

        .preview-row strong {
            display: block;
            line-height: 1.35;
            font-size: 0.9rem;
        }

        .preview-score {
            text-align: right;
        }

        .preview-score b {
            display: block;
            color: var(--primary-dark);
            font-size: 0.82rem;
        }

        .preview-footer {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid var(--border);
            color: var(--text-secondary);
            font-size: 0.8rem;
        }

        .preview-footer strong {
            color: var(--text);
        }

        .conversion-strip {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            margin: 0 0 1.5rem;
            padding: 1rem 1.2rem;
            background: #fff7ed;
            border: 1px solid #fed7aa;
            border-radius: var(--radius);
            color: #7c2d12;
        }

        .conversion-strip strong {
            font-size: 0.98rem;
        }

        .hook-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin: 0 0 1.5rem;
        }

        .hook-block {
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.2rem;
            box-shadow: var(--shadow);
        }

        .hook-block.is-paid {
            border-color: #bfdbfe;
            background: #eff6ff;
        }

        .hook-label {
            display: inline-flex;
            margin-bottom: 8px;
            padding: 4px 8px;
            border-radius: 999px;
            background: #edf7f4;
            color: var(--primary-dark);
            font-size: 0.72rem;
            font-weight: 850;
        }

        .hook-block h3 {
            margin: 0 0 8px;
            font-size: 1.05rem;
            line-height: 1.35;
        }

        .hook-block p {
            margin: 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .story-block {
            margin: 0 0 2rem;
            background: linear-gradient(135deg, #111827, #1e293b);
            border: 1px solid #334155;
            border-radius: var(--radius);
            padding: 1.5rem 2rem;
            color: #e2e8f0;
            box-shadow: var(--shadow);
        }

        .story-quote {
            margin: 0 0 12px;
            font-size: 1.05rem;
            line-height: 1.7;
            color: #f1f5f9;
            font-style: italic;
        }

        .story-author {
            margin: 0;
            font-size: 0.82rem;
            color: #94a3b8;
            font-weight: 600;
        }

        .roi-band {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
            gap: 18px;
            align-items: center;
            margin: 0 0 1.5rem;
            padding: 1.4rem;
            border: 1px solid #fed7aa;
            border-radius: var(--radius);
            background: #fff7ed;
        }

        .roi-band h2 {
            margin: 0 0 8px;
            color: #7c2d12;
            font-size: 1.45rem;
            line-height: 1.3;
        }

        .roi-band p {
            margin: 0;
            color: #9a3412;
        }

        .roi-metrics {
            display: grid;
            gap: 8px;
        }

        .roi-metrics div {
            padding: 10px 12px;
            border: 1px solid #fed7aa;
            border-radius: var(--radius-sm);
            background: #fff;
        }

        .roi-metrics strong,
        .roi-metrics span {
            display: block;
        }

        .roi-metrics strong {
            color: var(--text);
            font-size: 1.1rem;
            line-height: 1.2;
        }

        .roi-metrics span {
            color: var(--text-secondary);
            font-size: 0.78rem;
            font-weight: 700;
        }

        .pricing-section {
            margin: 0 0 1.8rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }

        .plan-card {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 12px;
            min-height: 100%;
            padding: 1.2rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: #fff;
            box-shadow: var(--shadow);
        }

        .plan-card.is-featured {
            border-color: var(--primary);
            box-shadow: 0 14px 34px rgba(15,118,110,0.16);
        }

        .plan-ribbon {
            position: absolute;
            top: 12px;
            right: 12px;
            padding: 4px 8px;
            border-radius: 999px;
            background: var(--accent);
            color: white;
            font-size: 0.72rem;
            font-weight: 850;
        }

        .plan-head span,
        .plan-head strong {
            display: block;
        }

        .plan-head span {
            color: var(--primary-dark);
            font-size: 0.82rem;
            font-weight: 850;
        }

        .plan-head strong {
            margin-top: 2px;
            color: var(--text);
            font-size: 1.55rem;
            line-height: 1.2;
        }

        .plan-card p {
            margin: 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .plan-card ul,
        .upgrade-plan-focus ul {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 8px;
        }

        .plan-card li,
        .upgrade-plan-focus li {
            position: relative;
            padding-left: 18px;
            color: #334155;
            font-size: 0.88rem;
        }

        .plan-card li::before,
        .upgrade-plan-focus li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.6em;
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: var(--primary);
        }

        .plan-card .btn {
            margin-top: auto;
        }

        .ops-hero {
            display: grid;
            grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
            gap: 20px;
            align-items: stretch;
            margin-bottom: 1.5rem;
        }

        .ops-hero-main {
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow);
        }

        .eyebrow {
            margin: 0 0 8px;
            color: var(--primary);
            font-size: 0.76rem;
            font-weight: 800;
            letter-spacing: 0;
            text-transform: uppercase;
        }

        .ops-hero h1 {
            margin: 0 0 0.9rem;
            max-width: 760px;
            font-size: 2.6rem;
            line-height: 1.15;
            font-weight: 850;
            color: var(--text);
        }

        .hero-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            align-items: center;
        }

        .ops-panel {
            background: #1f2933;
            color: white;
            border-radius: var(--radius);
            padding: 1.4rem;
            box-shadow: var(--shadow-lg);
            display: grid;
            align-content: center;
            gap: 0;
        }

        .ops-panel-row {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(255,255,255,0.14);
            font-size: 0.9rem;
        }

        .ops-panel-row:last-child {
            border-bottom: 0;
        }

        .ops-panel-row span {
            color: rgba(255,255,255,0.68);
        }

        .ops-panel-row strong {
            text-align: right;
        }

        .workflow-band {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            margin: 0 0 1.8rem;
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: var(--border);
        }

        .workflow-band > div {
            background: #fff;
            padding: 1.1rem;
        }

        .workflow-band strong {
            display: block;
            margin: 8px 0 4px;
        }

        .workflow-band p {
            margin: 0;
            color: var(--text-secondary);
            font-size: 0.86rem;
        }

        .workflow-step {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            border-radius: 999px;
            background: #edf7f4;
            color: var(--primary-dark);
            font-size: 0.8rem;
            font-weight: 800;
        }

        .section-head,
        .report-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 16px;
            margin: 0 0 1rem;
        }

        /* Stats */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin-bottom: 2rem;
        }
        .stat-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 1.5rem;
            text-align: left;
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: default;
            border: 1px solid var(--border);
        }
        .stat-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }
        .stat-card .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text);
        }
        .stat-card .stat-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        /* Tabs */
        .tab-nav {
            display: flex;
            gap: 4px;
            background: #e8eaed;
            border-radius: 24px;
            padding: 4px;
            margin-bottom: 1.5rem;
            overflow-x: auto;
        }
        .tab-nav button {
            flex: 1;
            min-width: 100px;
            padding: 10px 20px;
            border-radius: 20px;
            border: none;
            background: transparent;
            cursor: pointer;
            font-weight: 500;
            font-size: 0.9rem;
            transition: var(--transition);
            white-space: nowrap;
        }
        .tab-nav button.active {
            background: white;
            box-shadow: var(--shadow);
            color: var(--primary);
            font-weight: 700;
        }

        /* Section */
        .section {
            display: none;
        }
        .section.active {
            display: block;
            animation: fadeIn 0.4s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .section-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Cards Grid */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 16px;
        }
        .card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--border);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }
        .card.recommended {
            border-left: 4px solid var(--primary);
        }
        .card.recommended::before {
            content: '알림 후보';
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--primary);
            color: white;
            font-size: 0.7rem;
            padding: 4px 10px;
            border-radius: 12px;
            font-weight: 600;
        }
        .card .card-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .badge-funding { background: #e8f5e9; color: #2e7d32; }
        .badge-loan { background: #fff3e0; color: #e65100; }
        .badge-startup { background: #ecfdf5; color: #047857; }
        .badge-consulting { background: #e3f2fd; color: #1565c0; }
        .badge-tax { background: #fce4ec; color: #c62828; }
        .badge-export { background: #e8eaf6; color: #283593; }
        .badge-rd { background: #eef2ff; color: #3730a3; }
        .badge-hr { background: #f0f9ff; color: #0369a1; }
        .badge-other { background: #f3f4f6; color: #4b5563; }

        .card h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: var(--text);
            line-height: 1.4;
        }
        .card .card-info {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .card .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid var(--border);
            font-size: 0.8rem;
            color: var(--text-secondary);
        }
        .match-score {
            background: var(--primary);
            color: white;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        /* Search Bar */
        .search-bar {
            display: flex;
            gap: 8px;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        .search-bar input {
            flex: 1;
            min-width: 250px;
            padding: 12px 20px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 1rem;
            transition: var(--transition);
            outline: none;
            background: white;
        }
        .search-bar input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(15,118,110,0.1);
        }
        .search-bar select {
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            background: white;
            cursor: pointer;
            outline: none;
        }

        .program-page-size-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--text-secondary);
            font-size: 0.82rem;
            font-weight: 900;
        }

        .program-page-size-label select {
            min-width: 96px;
        }

        .list-insight-bar {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1px;
            margin-bottom: 1rem;
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: var(--border);
        }

        .list-insight-bar div {
            padding: 1rem;
            background: #fff;
        }

        .list-insight-bar span,
        .workspace-metric span {
            display: block;
            color: var(--text-secondary);
            font-size: 0.78rem;
            font-weight: 800;
            margin-bottom: 4px;
        }

        .list-insight-bar strong {
            color: var(--text);
            font-size: 1.15rem;
            line-height: 1.2;
        }

        .list-insight-bar .is-hot strong {
            color: var(--danger);
        }

        .program-type-tabs {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 8px;
            margin-bottom: 1rem;
        }

        .program-type-tab {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 4px;
            min-height: 70px;
            padding: 12px 14px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: #fff;
            color: var(--text-secondary);
            text-align: left;
            cursor: pointer;
            transition: var(--transition);
        }

        .program-type-tab strong {
            color: var(--text);
            font-size: 0.96rem;
            line-height: 1.2;
        }

        .program-type-tab span {
            font-size: 0.76rem;
            font-weight: 800;
            line-height: 1.25;
        }

        .program-type-tab:hover,
        .program-type-tab.is-active {
            border-color: rgba(15,118,110,0.4);
            background: #ecfdf5;
            box-shadow: var(--shadow-sm);
        }

        .program-type-tab.is-active strong {
            color: var(--primary);
        }

        .program-value-rail {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1px;
            margin-bottom: 1rem;
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: var(--border);
            box-shadow: var(--shadow-sm);
        }

        .program-value-rail > div {
            min-width: 0;
            padding: 1rem 1.1rem;
            background: #fff;
        }

        .program-value-rail span {
            display: inline-flex;
            align-items: center;
            margin-bottom: 6px;
            padding: 3px 8px;
            border-radius: 999px;
            background: var(--primary-tint);
            color: var(--primary-dark);
            font-size: 0.74rem;
            font-weight: 900;
        }

        .program-value-rail strong {
            display: block;
            color: var(--text-strong);
            font-size: 0.98rem;
            line-height: 1.35;
        }

        .program-value-rail p {
            margin-top: 4px;
            color: var(--text-secondary);
            font-size: 0.84rem;
            line-height: 1.45;
        }

        .program-board {
            overflow: hidden;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: #fff;
            box-shadow: var(--shadow);
        }

        .program-board-toolbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 14px 16px;
            border-bottom: 1px solid var(--border);
            background: #fbfcfe;
        }

        .program-board-toolbar strong {
            display: block;
            color: var(--text-strong);
            font-size: 1rem;
        }

        .program-board-toolbar span {
            display: block;
            margin-top: 2px;
            color: var(--text-secondary);
            font-size: 0.84rem;
        }

        .program-table-wrap {
            width: 100%;
            overflow-x: auto;
        }

        .program-table {
            width: 100%;
            min-width: 980px;
            border-collapse: collapse;
            table-layout: fixed;
        }

        .program-table th {
            padding: 10px 14px;
            border-bottom: 1px solid var(--border);
            background: #f8fafc;
            color: var(--text-secondary);
            font-size: 0.76rem;
            font-weight: 900;
            text-align: left;
            white-space: nowrap;
        }

        .program-table th:nth-child(1) { width: 128px; }
        .program-table th:nth-child(2) { width: auto; }
        .program-table th:nth-child(3) { width: 170px; }
        .program-table th:nth-child(4) { width: 190px; }
        .program-table th:nth-child(5) { width: 170px; }
        .program-table th:nth-child(6) { width: 108px; }

        .program-table td {
            padding: 14px;
            border-bottom: 1px solid var(--border-soft);
            vertical-align: top;
            color: var(--text);
            font-size: 0.9rem;
        }

        .program-table-row:hover td {
            background: #f9fbff;
        }

        .program-table-row:last-child td {
            border-bottom: none;
        }

        .program-cell-stack {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 7px;
        }

        .program-row-index {
            color: var(--text-tertiary);
            font-size: 0.74rem;
            font-weight: 800;
        }

        .program-table .card-badge {
            display: inline-flex;
            align-items: center;
            max-width: 100%;
            padding: 4px 9px;
            border-radius: 999px;
            font-size: 0.74rem;
            font-weight: 900;
            line-height: 1.2;
            white-space: nowrap;
        }

        .program-status-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 4px 8px;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 900;
            line-height: 1.2;
            white-space: nowrap;
            border: 1px solid var(--border);
            background: #fff;
            color: var(--text-secondary);
        }

        .program-type-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 4px 8px;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 900;
            line-height: 1.2;
            white-space: nowrap;
            border: 1px solid #d7dee8;
            background: #f8fafc;
            color: #475569;
        }

        .program-type-pill.is-support {
            border-color: #bfdbfe;
            background: #eff6ff;
            color: #1d4ed8;
        }

        .program-type-pill.is-policy {
            border-color: #c7d2fe;
            background: #eef2ff;
            color: #4338ca;
        }

        .program-type-pill.is-education_event {
            border-color: #fed7aa;
            background: #fff7ed;
            color: #9a3412;
        }

        .program-status-pill.is-open {
            border-color: #b7dfc2;
            background: #e6f4ea;
            color: #137333;
        }

        .program-status-pill.is-urgent {
            border-color: #f2b8b5;
            background: #fce8e6;
            color: #c5221f;
        }

        .program-status-pill.is-soon {
            border-color: #c9defc;
            background: var(--primary-tint);
            color: var(--primary-dark);
        }

        .program-status-pill.is-closed {
            border-color: var(--border-strong);
            background: var(--bg-subtle);
            color: var(--text-tertiary);
        }

        .program-title-button {
            display: block;
            width: 100%;
            border: none;
            background: transparent;
            color: var(--text-strong);
            cursor: pointer;
            font: inherit;
            font-size: 1rem;
            font-weight: 900;
            line-height: 1.42;
            text-align: left;
        }

        .program-title-button:hover,
        .program-title-button:focus-visible {
            color: var(--primary-dark);
            text-decoration: underline;
            outline: none;
        }

        .program-title-cell p {
            margin-top: 5px;
            color: var(--text-secondary);
            font-size: 0.84rem;
            line-height: 1.45;
        }

        .program-automation-note {
            display: inline-flex;
            align-items: center;
            width: fit-content;
            margin-top: 7px;
            padding: 4px 8px;
            border: 1px solid var(--border);
            border-radius: var(--radius-xs);
            background: var(--bg-subtle);
            color: var(--text-secondary);
            font-size: 0.74rem;
            font-weight: 850;
            line-height: 1.2;
        }

        .program-automation-note.is-preparation {
            border-color: #ffd9c8;
            background: var(--hot-soft);
            color: var(--hot-dark);
        }

        .program-automation-note.is-match {
            border-color: #bcd7ff;
            background: var(--primary-tint);
            color: var(--primary-dark);
        }

        .program-automation-note.is-listing,
        .program-automation-note.is-blocked {
            border-color: var(--border-strong);
            background: #f8fafc;
            color: var(--text-tertiary);
        }

        .program-period-cell strong,
        .program-org-cell strong {
            color: var(--text);
            font-size: 0.88rem;
            line-height: 1.35;
        }

        .program-period-cell span,
        .program-org-cell span {
            color: var(--text-secondary);
            font-size: 0.8rem;
            line-height: 1.35;
        }

        .program-action-button,
        .program-source-link,
        .program-save-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 30px;
            max-width: 100%;
            padding: 6px 10px;
            border-radius: var(--radius-xs);
            border: 1px solid var(--border);
            background: #fff;
            color: var(--text);
            cursor: pointer;
            font: inherit;
            font-size: 0.78rem;
            font-weight: 900;
            line-height: 1.2;
            text-decoration: none;
            white-space: nowrap;
        }

        .program-action-button.is-match {
            border-color: #bcd7ff;
            background: var(--primary-tint);
            color: var(--primary-dark);
        }

        .program-action-button.is-preparation {
            border-color: #ffd9c8;
            background: var(--hot-soft);
            color: var(--hot-dark);
        }

        .program-action-button.is-disabled,
        .program-action-button:disabled {
            border-color: var(--border-strong);
            background: #f8fafc;
            color: var(--text-tertiary);
            cursor: default;
        }

        .program-source-link:hover,
        .program-source-link:focus-visible,
        .program-save-button:hover,
        .program-save-button:focus-visible,
        .program-action-button:not(.is-disabled):not(:disabled):hover,
        .program-action-button:not(.is-disabled):not(:disabled):focus-visible {
            border-color: var(--primary);
            color: var(--primary-dark);
            outline: none;
        }

        .program-source-link.is-button {
            appearance: none;
        }

        .program-save-button {
            color: var(--text-secondary);
            background: #fff;
        }

        .program-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 12px;
            margin-top: 1rem;
            padding: 12px 14px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: #fff;
            box-shadow: var(--shadow-sm);
            text-align: center;
        }

        .program-pagination-summary {
            color: var(--text-secondary);
            font-size: 0.84rem;
            font-weight: 800;
            white-space: nowrap;
        }

        .program-pagination-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        .program-page-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 34px;
            min-height: 34px;
            padding: 7px 11px;
            border: 1px solid var(--border);
            border-radius: var(--radius-xs);
            background: #fff;
            color: var(--text);
            cursor: pointer;
            font: inherit;
            font-size: 0.82rem;
            font-weight: 900;
            line-height: 1.2;
        }

        .program-page-button:hover,
        .program-page-button:focus-visible {
            border-color: var(--primary);
            color: var(--primary-dark);
            outline: none;
        }

        .program-page-button.is-active {
            border-color: var(--primary);
            background: var(--primary);
            color: #fff;
        }

        .program-page-button:disabled {
            cursor: not-allowed;
            opacity: 0.45;
        }

        @media (max-width: 920px) {
            .program-value-rail,
            .list-insight-bar {
                grid-template-columns: 1fr;
            }

            .program-type-tabs {
                grid-template-columns: 1fr 1fr;
            }

            .program-type-tab {
                min-height: 66px;
                padding: 11px 12px;
            }

            .program-board-toolbar {
                align-items: stretch;
                flex-direction: column;
            }

            .program-pagination {
                align-items: stretch;
            }

            .program-pagination-buttons {
                justify-content: center;
            }

            .program-table {
                min-width: 0;
            }

            .program-table thead {
                display: none;
            }

            .program-table,
            .program-table tbody,
            .program-table tr,
            .program-table td {
                display: block;
                width: 100%;
            }

            .program-table-row {
                padding: 12px 0;
                border-bottom: 1px solid var(--border);
            }

            .program-table-row:last-child {
                border-bottom: none;
            }

            .program-table td {
                border-bottom: none;
                padding: 7px 14px;
            }

            .program-table td:not(.program-title-cell) {
                display: grid;
                grid-template-columns: 86px minmax(0, 1fr);
                gap: 10px;
                align-items: start;
            }

            .program-table td:not(.program-title-cell)::before {
                content: attr(data-label);
                color: var(--text-tertiary);
                font-size: 0.74rem;
                font-weight: 900;
                line-height: 1.4;
                padding-top: 3px;
            }

            .program-title-cell {
                padding-top: 10px;
                padding-bottom: 8px;
            }

            .program-cell-stack {
                flex-direction: row;
                flex-wrap: wrap;
                align-items: center;
                gap: 6px;
                min-width: 0;
            }

            .program-period-cell .program-cell-stack,
            .program-org-cell .program-cell-stack {
                align-items: flex-start;
                flex-direction: column;
                gap: 3px;
            }
        }

        @media (max-width: 480px) {
            .program-value-rail > div,
            .program-board-toolbar {
                padding: 0.9rem;
            }

            .program-title-button {
                font-size: 0.94rem;
            }

            .program-table td:not(.program-title-cell) {
                grid-template-columns: 72px minmax(0, 1fr);
            }

            .program-action-button,
            .program-source-link,
            .program-save-button {
                min-height: 32px;
                padding: 6px 9px;
                font-size: 0.76rem;
            }
        }

        .load-more-row {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 48px;
            margin-top: 1.25rem;
        }

        /* Form Styles */
        .form-container {
            max-width: 700px;
            margin: 0 auto;
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }

        .auth-layout {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
            gap: 24px;
            align-items: start;
            max-width: 1040px;
            margin: 0 auto;
        }

        .auth-copy {
            background: #111827;
            color: white;
            border-radius: var(--radius);
            padding: 2rem;
            min-height: 420px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-shadow: var(--shadow-lg);
        }

        .auth-copy .eyebrow {
            color: #67e8f9;
        }

        .auth-copy h2 {
            margin: 0 0 1rem;
            font-size: 2rem;
            line-height: 1.18;
        }

        .auth-copy p {
            margin: 0;
            color: #cbd5e1;
        }

        .auth-benefits {
            display: grid;
            gap: 8px;
            margin-top: 1.4rem;
        }

        .auth-benefits span {
            padding: 10px 12px;
            border: 1px solid rgba(255,255,255,0.14);
            border-radius: var(--radius-sm);
            background: rgba(255,255,255,0.07);
            color: #e2e8f0;
            font-weight: 700;
        }

        .auth-proof-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin-top: 1.2rem;
        }

        .auth-proof-row div {
            padding: 10px;
            border: 1px solid rgba(255,255,255,0.14);
            border-radius: var(--radius-sm);
            background: rgba(255,255,255,0.06);
        }

        .auth-proof-row strong,
        .auth-proof-row span {
            display: block;
        }

        .auth-proof-row strong {
            color: #fef3c7;
            font-size: 1.15rem;
            line-height: 1.15;
        }

        .auth-proof-row span {
            margin-top: 3px;
            color: #cbd5e1;
            font-size: 0.76rem;
            font-weight: 700;
        }

        .auth-mini-report,
        .auth-next-card {
            margin-top: 1.2rem;
            padding: 1rem;
            border-radius: var(--radius-sm);
        }

        .auth-mini-report {
            border: 1px solid rgba(254,243,199,0.28);
            background: rgba(120,53,15,0.28);
        }

        .auth-mini-report strong {
            display: block;
            color: #fff7ed;
            line-height: 1.35;
        }

        .auth-mini-report p {
            margin-top: 6px;
            color: #fed7aa;
            font-size: 0.86rem;
        }

        .auth-next-card {
            background: #f8fafc;
            border: 1px solid var(--border);
        }

        .auth-next-card p {
            margin: 6px 0 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .setup-summary {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            margin-bottom: 1.2rem;
        }

        .setup-summary div {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: #f8fafc;
        }

        .setup-summary strong {
            display: inline-flex;
            width: 24px;
            height: 24px;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: var(--primary);
            color: white;
            font-size: 0.78rem;
        }

        .setup-summary span,
        .form-hint {
            color: var(--text-secondary);
            font-size: 0.86rem;
        }

        .form-hint {
            margin: -4px 0 12px;
        }

        .field-help {
            margin: -2px 0 8px;
            color: var(--text-secondary);
            font-size: 0.82rem;
            line-height: 1.45;
        }

        .profile-progress-card {
            margin-bottom: 1.2rem;
            padding: 1rem;
            border-radius: var(--radius);
            background: linear-gradient(135deg, #f8fafc, #eef8f5);
            border: 1px solid #cde7df;
        }

        .compact-progress {
            margin: 1rem 0 0;
        }

        .profile-progress-head {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            align-items: flex-start;
        }

        .profile-progress-head strong {
            display: block;
            font-size: 1rem;
            line-height: 1.35;
        }

        .profile-percent {
            color: var(--primary-dark);
            font-size: 1.6rem;
            line-height: 1;
            font-weight: 850;
        }

        .profile-progress-bar {
            height: 10px;
            margin: 12px 0 10px;
            overflow: hidden;
            border-radius: 999px;
            background: #d9e0e6;
        }

        .profile-progress-bar span {
            display: block;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, var(--primary), #22c55e);
            transition: width 0.2s ease;
        }

        .profile-progress-card p {
            margin: 0;
            color: #334155;
            font-size: 0.9rem;
        }

        .profile-missing {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 10px;
        }

        .profile-missing span {
            display: inline-flex;
            padding: 4px 8px;
            border-radius: 999px;
            background: #fff;
            border: 1px solid #dbe7e2;
            color: var(--text-secondary);
            font-size: 0.76rem;
            font-weight: 700;
        }

        .report-profile-card {
            margin-bottom: 1rem;
        }

        .profile-panel-actions {
            display: flex;
            justify-content: flex-end;
            margin-top: 12px;
        }

        .save-cta-box {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            margin-top: 1.2rem;
            padding: 1rem;
            border-radius: var(--radius);
            background: #fff7ed;
            border: 1px solid #fed7aa;
        }

        .save-cta-box p {
            margin: 4px 0 0;
            color: #7c2d12;
            font-size: 0.86rem;
        }

        .save-cta-box .btn {
            flex: 0 0 auto;
            justify-content: center;
        }

        .form-group {
            margin-bottom: 1.2rem;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 6px;
            font-size: 0.9rem;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 10px 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            transition: var(--transition);
            outline: none;
            font-family: inherit;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26,115,232,0.08);
        }
        .input-with-unit {
            position: relative;
        }
        .input-with-unit input {
            padding-right: 76px;
        }
        .input-with-unit span {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-secondary);
            font-size: 0.9rem;
            pointer-events: none;
            white-space: nowrap;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        .btn {
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .btn-lg {
            padding: 14px 32px;
            font-size: 1.1rem;
        }
        .btn-block {
            width: 100%;
            justify-content: center;
        }

        /* Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.2s ease;
        }
        .modal {
            background: white;
            border-radius: var(--radius);
            padding: 2rem;
            max-width: 860px;
            width: 90%;
            max-height: 85vh;
            overflow-y: auto;
            box-shadow: var(--shadow-lg);
        }
        .modal h2 {
            margin-bottom: 1rem;
        }
        .modal-close {
            float: right;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 50%;
            transition: var(--transition);
        }
        .modal-close:hover {
            background: #f1f3f4;
        }

        .billing-consent-overlay {
            z-index: 2600;
            padding: 20px;
            background: rgba(15, 23, 42, 0.58);
        }

        .billing-consent-card {
            position: relative;
            width: min(520px, 100%);
            background: #fff;
            border: 1px solid rgba(148, 163, 184, 0.34);
            border-radius: 18px;
            box-shadow: 0 24px 80px rgba(15, 23, 42, 0.28);
        }

        .billing-consent-close {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 36px;
            height: 36px;
            border: 0;
            border-radius: 999px;
            background: #f1f5f9;
            color: var(--text);
            font-size: 1.35rem;
            line-height: 1;
            cursor: pointer;
        }

        .billing-consent-close:hover {
            background: #e2e8f0;
        }

        .billing-consent-body {
            padding: 28px;
        }

        .billing-consent-body h2 {
            margin: 6px 44px 16px 0;
            color: var(--text);
            font-size: 1.65rem;
            line-height: 1.22;
        }

        .billing-charge-box {
            margin: 0 0 14px;
            padding: 14px 16px;
            border: 1px solid #fde68a;
            border-radius: 14px;
            background: #fffbeb;
        }

        .billing-charge-box strong {
            display: block;
            color: #111827;
            font-size: 1rem;
            line-height: 1.35;
        }

        .billing-charge-box p {
            margin: 6px 0 0;
            color: #374151;
            font-size: 0.9rem;
            line-height: 1.55;
        }

        .billing-consent-body .legal-consent-row {
            margin: 0 0 16px;
            padding: 14px;
            border-radius: 14px;
            background: #f8fafc;
        }

        .billing-consent-body .modal-actions {
            justify-content: flex-end;
        }

        .billing-consent-body .modal-actions .btn {
            min-height: 46px;
        }
        .ai-summary-box {
            background: #eef8f5;
            border-radius: var(--radius-sm);
            padding: 1.2rem;
            margin: 1rem 0;
            border-left: 4px solid var(--primary);
        }
        .ai-summary-box .ai-label {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .prep-panel {
            margin-top: 1.25rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: #ffffff;
            box-shadow: 0 1px 0 rgba(31,41,51,0.04);
            padding: 1rem;
        }

        .prep-lock-card {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(220px, 0.65fr);
            gap: 14px;
            align-items: center;
            margin: 1rem 0;
            padding: 1rem;
            border: 1px solid #bfdbfe;
            border-radius: var(--radius);
            background: #eff6ff;
        }

        .prep-lock-card strong {
            display: block;
            color: #1e3a8a;
            line-height: 1.35;
        }

        .prep-lock-card p {
            margin: 6px 0 0;
            color: #334155;
            font-size: 0.9rem;
        }

        .prep-blur-sample {
            position: relative;
            overflow: hidden;
            padding: 12px;
            border: 1px solid #bfdbfe;
            border-radius: var(--radius-sm);
            background: rgba(255,255,255,0.78);
        }

        .prep-blur-sample::after {
            content: 'Pro';
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(239,246,255,0.68);
            color: #1d4ed8;
            font-size: 1rem;
            font-weight: 900;
            backdrop-filter: blur(2px);
        }

        .prep-blur-sample span {
            display: block;
            margin-bottom: 6px;
            color: #1e3a8a;
            font-weight: 850;
        }

        .prep-blur-sample p {
            margin: 4px 0;
            color: #64748b;
            font-size: 0.82rem;
        }

        .prep-panel[hidden] {
            display: none;
        }

        .prep-panel-head,
        .prep-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }

        .prep-panel-head h3 {
            margin: 4px 0 0;
            font-size: 1.2rem;
        }

        .prep-meta-tags {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .prep-actions {
            display: flex;
            justify-content: flex-end;
            margin: -4px 0 16px;
        }

        .prep-model-picker {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
            gap: 10px;
            width: min(520px, 100%);
        }

        .prep-model-picker .btn {
            min-height: 56px;
            align-items: flex-start;
            flex-direction: column;
            gap: 3px;
            line-height: 1.2;
        }

        .prep-model-picker .btn span {
            font-size: 0.76rem;
            font-weight: 700;
            opacity: 0.78;
        }

        .prep-badge {
            display: inline-flex;
            align-items: center;
            border: 1px solid #cde7df;
            background: #eef8f5;
            color: var(--primary-dark);
            border-radius: 999px;
            padding: 4px 9px;
            font-size: 0.75rem;
            font-weight: 800;
            white-space: nowrap;
        }

        .prep-badge.is-good {
            border-color: #bbf7d0;
            background: #f0fdf4;
            color: #166534;
        }

        .prep-badge.is-caution {
            border-color: #fed7aa;
            background: #fff7ed;
            color: #9a3412;
        }

        .prep-badge.is-blocked {
            border-color: #fecaca;
            background: #fef2f2;
            color: #991b1b;
        }

        .prep-loading {
            margin: 0;
        }

        .prep-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 12px;
        }

        .prep-section {
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 12px;
            margin-top: 12px;
            background: #fbfcfd;
        }

        .prep-section h4 {
            margin: 0 0 8px;
            color: var(--text);
            font-size: 0.95rem;
        }

        .prep-section p {
            margin: 0;
            color: #334155;
        }

        .prep-quality-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 10px;
        }

        .prep-quality-list {
            border: 1px solid #e2e8f0;
            border-radius: var(--radius-sm);
            background: #ffffff;
            padding: 10px;
        }

        .prep-quality-list strong {
            display: block;
            margin-bottom: 6px;
            color: #0f172a;
            font-size: 0.86rem;
        }

        .prep-quality-list ul {
            margin: 0;
            padding-left: 18px;
            color: #475569;
            font-size: 0.88rem;
        }

        .prep-quality-list li {
            margin-bottom: 4px;
        }

        .prep-quality-list.is-risk {
            border-color: #fed7aa;
            background: #fff7ed;
        }

        .prep-quality-list.is-risk li {
            color: #9a3412;
        }

        .prep-form-fields {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 8px;
        }

        .prep-form-fields div {
            border: 1px solid #e2e8f0;
            border-radius: var(--radius-sm);
            background: #ffffff;
            padding: 9px 10px;
            min-width: 0;
        }

        .prep-form-fields span {
            display: block;
            color: #64748b;
            font-size: 0.78rem;
            margin-bottom: 4px;
        }

        .prep-form-fields strong {
            display: block;
            color: #0f172a;
            font-size: 0.9rem;
            line-height: 1.35;
            word-break: keep-all;
            overflow-wrap: anywhere;
        }

        .prep-form-fields .is-missing {
            background: #fff7ed;
            border-color: #fed7aa;
        }

        .prep-form-fields .is-missing strong {
            color: #9a3412;
        }

        .prep-list {
            margin: 0;
            padding-left: 18px;
            color: #334155;
        }

        .prep-list li {
            margin-bottom: 5px;
        }

        .prep-list.is-risk li {
            color: #9a3412;
        }

        .prep-subsections {
            display: grid;
            gap: 12px;
        }

        .prep-subsections article {
            border-top: 1px solid var(--border);
            padding-top: 10px;
        }

        .prep-subsections article:first-child {
            border-top: 0;
            padding-top: 0;
        }

        .prep-subsections strong {
            display: block;
            margin-bottom: 5px;
            color: var(--primary-dark);
        }

        .prep-pre {
            margin: 0;
            white-space: pre-wrap;
            word-break: keep-all;
            overflow-wrap: anywhere;
            font-family: inherit;
            background: #f1f5f9;
            border-radius: var(--radius-sm);
            padding: 12px;
            color: #334155;
        }

        .prep-disclaimer {
            margin: 12px 0 0;
            font-size: 0.82rem;
            color: var(--text-secondary);
        }

        .upgrade-box {
            border-left: 4px solid var(--primary);
            background: #eef8f5;
            border-radius: var(--radius-sm);
            padding: 1rem;
        }

        .upgrade-box p {
            margin: 8px 0 0;
        }

        .upgrade-box .btn {
            margin-top: 12px;
        }

        .upgrade-modal h2 {
            margin: 0 0 0.8rem;
            color: var(--text);
            font-size: 2rem;
            line-height: 1.16;
        }

        .risk-reversal-note {
            display: inline-flex;
            width: fit-content;
            margin: 0.75rem 0 0;
            padding: 8px 12px;
            border: 1px solid #bfdbfe;
            border-radius: 999px;
            background: #eff6ff;
            color: #1d4ed8;
            font-size: 0.84rem;
            font-weight: 900;
            line-height: 1.25;
        }

        .upgrade-roi-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin: 1rem 0;
        }

        .upgrade-roi-grid div {
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: #f8fafc;
        }

        .upgrade-roi-grid strong,
        .upgrade-roi-grid span {
            display: block;
        }

        .upgrade-roi-grid strong {
            color: var(--primary-dark);
            font-size: 1.1rem;
            line-height: 1.2;
        }

        .upgrade-roi-grid span {
            margin-top: 4px;
            color: var(--text-secondary);
            font-size: 0.76rem;
            font-weight: 800;
        }

        .upgrade-prep-preview,
        .upgrade-plan-focus {
            display: grid;
            gap: 12px;
            margin-top: 1rem;
            padding: 1rem;
            border-radius: var(--radius);
        }

        .upgrade-prep-preview {
            grid-template-columns: 1fr 1fr;
            border: 1px solid #bfdbfe;
            background: #eff6ff;
        }

        .upgrade-prep-preview strong,
        .upgrade-plan-focus strong {
            display: block;
            color: var(--text);
            line-height: 1.35;
        }

        .upgrade-prep-preview p,
        .upgrade-plan-focus p {
            margin: 6px 0 0;
            color: var(--text-secondary);
            font-size: 0.88rem;
        }

        .upgrade-plan-focus {
            grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
            border: 1px solid #cde7df;
            background: #eef8f5;
        }

        .upgrade-plan-focus span {
            display: block;
            color: var(--primary-dark);
            font-size: 0.8rem;
            font-weight: 850;
        }
        .required-docs {
            list-style: none;
            padding: 0;
        }
        .required-docs li {
            padding: 6px 0;
            padding-left: 20px;
            position: relative;
        }
        .required-docs li::before {
            content: '📋';
            position: absolute;
            left: 0;
        }

        /* Toast */
        .toast {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #323232;
            color: white;
            padding: 1rem 1.5rem;
            border-radius: var(--radius-sm);
            z-index: 3000;
            animation: slideUp 0.3s ease;
            font-weight: 500;
            box-shadow: var(--shadow-lg);
        }
        @keyframes slideUp {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* Progress indicator for AI */
        .ai-thinking {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: var(--radius-sm);
            margin: 1rem 0;
        }
        .ai-thinking .dots span {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary);
            margin: 0 2px;
            animation: bounce 1.4s infinite ease-in-out both;
        }
        .ai-thinking .dots span:nth-child(1) { animation-delay: -0.32s; }
        .ai-thinking .dots span:nth-child(2) { animation-delay: -0.16s; }
        @keyframes bounce {
            0%, 80%, 100% { transform: scale(0); }
            40% { transform: scale(1); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .conversion-hero { grid-template-columns: 1fr; padding: 1.4rem; }
            .conversion-copy { min-height: auto; }
            .conversion-copy h1 { font-size: 2rem; }
            .report-preview { width: 100%; }
            .preview-metrics { grid-template-columns: 1fr; }
            .hook-grid { grid-template-columns: 1fr; }
            .roi-band { grid-template-columns: 1fr; }
            .pricing-grid { grid-template-columns: 1fr; }
            .auth-layout { grid-template-columns: 1fr; }
            .auth-copy { min-height: auto; padding: 1.4rem; }
            .auth-proof-row { grid-template-columns: 1fr; }
            .setup-summary { grid-template-columns: 1fr; }
            .profile-step-head,
            .profile-step-details > summary {
                flex-direction: column;
                align-items: flex-start;
            }
            .profile-step-meta {
                align-self: flex-start;
            }
            .save-cta-box, .reward-band { align-items: stretch; flex-direction: column; }
            .save-cta-box .btn, .reward-band .btn { width: 100%; justify-content: center; }
            .list-insight-bar { grid-template-columns: 1fr; }
            .report-gate { grid-template-columns: 1fr; }
            .report-gate-copy h2 { font-size: 1.8rem; }
            .pro-unlock-panel { grid-template-columns: 1fr; }
            .prep-lock-card { grid-template-columns: 1fr; }
            .upgrade-roi-grid, .upgrade-prep-preview, .upgrade-plan-focus { grid-template-columns: 1fr; }
            .ops-hero { grid-template-columns: 1fr; }
            .ops-hero h1 { font-size: 1.9rem; }
            .ops-hero-main { padding: 1.4rem; }
            .workflow-band { grid-template-columns: 1fr; }
            .section-head, .report-header { align-items: flex-start; flex-direction: column; }
            .recommend-section-head { align-items: flex-start; flex-direction: column; }
            .recommend-section-head p { max-width: none; text-align: left; }
            .card-grid { grid-template-columns: 1fr; }
            .card-topline { padding-right: 0; align-items: flex-start; }
            .card.recommended::before { display: none; }
            .decision-table { min-width: 860px; }
            .form-row { grid-template-columns: 1fr; }
            .nav-links { gap: 2px; }
            .nav-links a, .nav-btn { padding: 6px 10px; font-size: 0.8rem; }
            .navbar-inner { padding: 0 0.5rem; height: auto; min-height: 64px; flex-wrap: wrap; justify-content: center; }
            .auth-status { min-width: 0; width: 100%; justify-content: center; padding-bottom: 8px; }
            .empty-conversion { padding: 1.6rem 1rem; }
            .empty-conversion h2 { font-size: 1.45rem; }
        }

        .empty-state {
            text-align: center;
            padding: 3rem 1rem;
            color: var(--text-secondary);
        }
        .empty-state .empty-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .empty-conversion {
            max-width: 760px;
            margin: 0 auto;
            padding: 2.4rem;
            text-align: center;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .empty-conversion.compact-empty {
            max-width: none;
            padding: 1.6rem;
            margin: 0 0 1rem;
        }

        .empty-conversion .empty-icon {
            display: block;
            margin-bottom: 0.6rem;
            font-size: 2.8rem;
            line-height: 1;
        }

        .empty-conversion h2 {
            margin: 0 0 0.75rem;
            color: var(--text);
            font-size: 1.8rem;
            line-height: 1.2;
        }

        .empty-conversion-actions {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 1.2rem;
        }

        .app-status {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        .page-actions {
            text-align: center;
            margin-top: 1.5rem;
        }

        .card-summary {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 8px;
            line-height: 1.5;
        }

        .quality-note {
            display: inline-flex;
            align-items: center;
            width: fit-content;
            margin-top: 8px;
            padding: 5px 9px;
            border: 1px solid #fed7aa;
            border-radius: 999px;
            background: #fff7ed;
            color: #9a3412;
            font-size: 0.76rem;
            font-weight: 800;
            line-height: 1.2;
        }

        .quality-note-modal {
            margin: 10px 0 0;
            border-radius: var(--radius-sm);
        }

        .match-reason {
            margin-top: 10px;
            padding: 10px;
            border-radius: var(--radius-sm);
            background: #f1f8f4;
            color: #137333;
            font-size: 0.82rem;
        }

        .card-topline {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 8px;
        }

        .card.recommended .card-topline {
            padding-right: 86px;
        }

        .decision-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 68px;
            padding: 4px 9px;
            border-radius: 999px;
            font-size: 0.74rem;
            font-weight: 800;
            line-height: 1.2;
            white-space: nowrap;
        }

        .decision-good {
            background: #e6f4ea;
            color: #137333;
            border: 1px solid #b7dfc2;
        }

        .decision-review {
            background: #fef7e0;
            color: #b06000;
            border: 1px solid #f4d27a;
        }

        .decision-bad {
            background: #fce8e6;
            color: #c5221f;
            border: 1px solid #f2b8b5;
        }

        .executive-summary {
            margin-top: 10px;
            padding: 10px;
            border-radius: var(--radius-sm);
            background: #eef2ff;
            color: #1f3a8a;
            font-size: 0.84rem;
            font-weight: 700;
        }

        .mini-evidence {
            display: flex;
            gap: 8px;
            align-items: flex-start;
            margin-top: 8px;
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        .mini-evidence strong {
            flex: 0 0 auto;
            color: var(--primary);
        }

        .mini-evidence.is-risk strong {
            color: var(--danger);
        }

        .decision-table-wrap {
            margin: 1.2rem 0 1.5rem;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .decision-table-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 1rem 1.2rem;
            border-bottom: 1px solid var(--border);
        }

        .decision-table-head h3 {
            margin: 0;
            font-size: 1.05rem;
        }

        .decision-table-scroll {
            overflow-x: auto;
        }

        .decision-table {
            width: 100%;
            min-width: 980px;
            border-collapse: collapse;
            font-size: 0.84rem;
        }

        .decision-table th,
        .decision-table td {
            padding: 12px;
            border-bottom: 1px solid var(--border);
            text-align: left;
            vertical-align: top;
        }

        .decision-table th {
            background: #f8fafd;
            color: var(--text-secondary);
            font-size: 0.78rem;
            font-weight: 800;
        }

        .decision-table tr {
            cursor: pointer;
        }

        .decision-table tr:hover {
            background: #f8fbff;
        }

        .decision-table td:nth-child(2) {
            min-width: 260px;
        }

        .decision-table td:nth-child(2) span {
            display: block;
            margin-top: 4px;
            color: var(--text-secondary);
            font-size: 0.78rem;
        }

        .decision-table td:nth-child(5) span,
        .decision-table td:nth-child(6) span {
            display: block;
            margin-bottom: 5px;
        }

        .decision-detail-head {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            margin: 8px 0 10px;
        }

        .decision-lists {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 12px;
            margin-top: 12px;
        }

        .decision-list {
            background: rgba(255,255,255,0.68);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 10px 12px;
        }

        .decision-list strong {
            display: block;
            margin-bottom: 6px;
            color: var(--primary);
            font-size: 0.84rem;
        }

        .decision-list.is-risk strong {
            color: var(--danger);
        }

        .decision-list ul {
            margin: 0;
            padding-left: 18px;
        }

        .decision-list li {
            margin: 4px 0;
            font-size: 0.84rem;
        }

        .report-summary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 12px;
            margin-bottom: 1rem;
        }

        .report-gate {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
            gap: 24px;
            align-items: center;
            max-width: 1040px;
            margin: 0 auto;
        }

        .report-gate-copy h2 {
            margin: 0 0 0.8rem;
            max-width: 680px;
            color: var(--text);
            font-size: 2.2rem;
            line-height: 1.16;
            font-weight: 850;
        }

        .report-gate-copy .hero-actions {
            margin-top: 1.2rem;
        }

        .sample-report-card {
            background: #111827;
            border: 1px solid #334155;
            border-radius: var(--radius);
            padding: 1rem;
            color: #e2e8f0;
            box-shadow: var(--shadow-lg);
        }

        .sample-report-head {
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.12);
            margin-bottom: 10px;
        }

        .sample-report-head strong {
            display: block;
            color: #f8fafc;
        }

        .sample-report-row {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            gap: 10px;
            align-items: start;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .sample-report-row:last-child {
            border-bottom: 0;
        }

        .sample-report-row strong {
            display: block;
            color: #f8fafc;
            line-height: 1.35;
        }

        .sample-report-row p {
            margin: 4px 0 0;
            color: #cbd5e1;
            font-size: 0.82rem;
        }

        .reward-band {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            margin-bottom: 1rem;
            padding: 1rem 1.2rem;
            border-radius: var(--radius);
            background: #fff7ed;
            border: 1px solid #fed7aa;
        }

        .reward-band strong {
            display: block;
            color: #7c2d12;
            font-size: 1.05rem;
            line-height: 1.35;
        }

        .reward-band p {
            margin: 4px 0 0;
            color: #9a3412;
            font-size: 0.88rem;
        }

        .pro-unlock-panel {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(240px, 0.45fr);
            gap: 14px;
            align-items: center;
            margin: 0 0 1.2rem;
            padding: 1.1rem;
            border: 1px solid #cde7df;
            border-radius: var(--radius);
            background: linear-gradient(135deg, #f8fafc, #eef8f5);
        }

        .locked-preview strong {
            display: block;
            color: var(--text);
            font-size: 1.05rem;
            line-height: 1.35;
        }

        .locked-preview p {
            margin: 6px 0 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .pro-unlock-actions {
            display: grid;
            gap: 10px;
        }

        .pro-unlock-actions span {
            color: var(--primary-dark);
            font-size: 0.86rem;
            font-weight: 800;
        }

        .report-metric {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1rem;
            box-shadow: var(--shadow);
        }

        .report-metric span {
            display: block;
            color: var(--text-secondary);
            font-size: 0.78rem;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .report-metric strong {
            color: var(--text);
            font-size: 1.1rem;
            line-height: 1.25;
        }

        .outcome-learning-panel {
            margin-bottom: 1rem;
            padding: 1rem;
            border: 1px solid #b7d8cc;
            border-radius: var(--radius);
            background: #f4fbf8;
            box-shadow: var(--shadow);
        }

        .outcome-learning-panel.is-empty {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 14px;
            background: #f8fafc;
            border-color: var(--border);
        }

        .outcome-learning-panel strong {
            display: block;
            color: var(--text);
            line-height: 1.35;
        }

        .outcome-learning-panel p {
            margin: 5px 0 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .outcome-learning-head {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            align-items: flex-start;
            margin-bottom: 0.9rem;
        }

        .outcome-learning-score {
            min-width: 104px;
            padding: 0.75rem;
            border-radius: var(--radius);
            background: #fff;
            border: 1px solid #d4e8e0;
            text-align: right;
        }

        .outcome-learning-score span,
        .outcome-learning-stats span {
            display: block;
            color: var(--text-secondary);
            font-size: 0.74rem;
            font-weight: 800;
        }

        .outcome-learning-score strong {
            font-size: 1.15rem;
            color: var(--primary-dark);
        }

        .outcome-learning-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 10px;
            margin-bottom: 0.9rem;
        }

        .outcome-learning-stats > div {
            padding: 0.75rem;
            background: #fff;
            border: 1px solid #d4e8e0;
            border-radius: var(--radius);
        }

        .outcome-learning-stats strong {
            font-size: 1rem;
        }

        .outcome-learning-stats p {
            margin-top: 3px;
            font-size: 0.78rem;
        }

        .outcome-learning-list {
            display: grid;
            gap: 8px;
        }

        .outcome-learning-row {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 4px 12px;
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #d4e8e0;
            border-radius: var(--radius);
            background: #fff;
            text-align: left;
            cursor: pointer;
        }

        .outcome-learning-row span {
            color: var(--text);
            font-weight: 800;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .outcome-learning-row strong {
            color: var(--primary-dark);
        }

        .outcome-learning-row small {
            grid-column: 1 / -1;
            color: var(--text-secondary);
            font-size: 0.78rem;
            line-height: 1.4;
        }

        .program-change-panel {
            border-color: #d7c8a8;
            background: #fffaf0;
        }

        .program-change-panel .outcome-learning-stats > div,
        .program-change-row {
            border-color: #eadfca;
        }

        .program-change-row strong {
            color: #92400e;
        }

        .program-change-lines {
            display: grid;
            gap: 4px;
        }

        .program-change-lines span {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .learning-workspace-panel {
            background: #f4fbf8;
            border-color: #b7d8cc;
        }

        .prep-export-actions {
            display: flex;
            justify-content: flex-end;
            margin: 0.75rem 0 1rem;
        }

        .recommend-section {
            margin-top: 1.3rem;
        }

        .recommend-section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 0.8rem;
        }

        .recommend-section-head h3 {
            margin: 0;
            color: var(--text);
            font-size: 1.05rem;
            line-height: 1.3;
        }

        .recommend-section-head p {
            margin: 0;
            max-width: 640px;
            text-align: right;
            font-size: 0.86rem;
        }

        .card-actions {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .intent-controls {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
            margin: 12px 0 4px;
        }

        .intent-controls-modal {
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: #f8fbff;
        }

        .intent-label {
            color: var(--text-secondary);
            font-size: 0.8rem;
            font-weight: 800;
        }

        .intent-pill,
        .intent-button {
            border-radius: 999px;
            font-size: 0.78rem;
            font-weight: 800;
            line-height: 1;
            white-space: nowrap;
        }

        .intent-pill {
            display: inline-flex;
            align-items: center;
            min-height: 28px;
            padding: 0 10px;
            color: var(--primary);
            background: rgba(37, 99, 235, 0.09);
            border: 1px solid rgba(37, 99, 235, 0.18);
        }

        .intent-button {
            min-height: 28px;
            padding: 0 10px;
            border: 1px solid var(--border);
            color: var(--text-secondary);
            background: #fff;
            cursor: pointer;
        }

        .intent-button:hover,
        .intent-button:focus-visible,
        .intent-button.is-active {
            color: var(--primary);
            border-color: rgba(37, 99, 235, 0.45);
            background: rgba(37, 99, 235, 0.08);
        }

        .intent-button.is-danger:hover,
        .intent-button.is-danger:focus-visible,
        .intent-button.is-danger.is-active {
            color: var(--danger);
            border-color: rgba(220, 38, 38, 0.38);
            background: rgba(220, 38, 38, 0.08);
        }

        .application-progress-board {
            display: grid;
            gap: 10px;
            margin-bottom: 24px;
        }

        .application-progress-row {
            display: grid;
            grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.9fr) auto;
            align-items: center;
            gap: 14px;
            padding: 14px;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: #fff;
            box-shadow: var(--shadow-sm);
        }

        .application-progress-row strong {
            display: block;
            margin-top: 6px;
            color: var(--text);
            font-size: 0.95rem;
        }

        .application-progress-meter {
            display: grid;
            gap: 6px;
        }

        .application-progress-meter span {
            color: var(--text-secondary);
            font-size: 0.78rem;
            font-weight: 800;
        }

        .application-progress-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 6px;
        }

        .outcome-pill {
            color: #047857;
            border-color: rgba(4, 120, 87, 0.24);
            background: rgba(16, 185, 129, 0.1);
        }

        .outcome-analysis-box {
            margin: 10px 0 14px;
            padding: 12px;
            border: 1px solid rgba(37, 99, 235, 0.16);
            border-radius: var(--radius-sm);
            background: #f8fbff;
        }

        .outcome-analysis-box strong {
            display: block;
            margin-bottom: 4px;
            color: var(--text);
            font-size: 0.9rem;
        }

        .outcome-analysis-box p {
            margin: 0 0 8px;
            color: var(--text-secondary);
            font-size: 0.86rem;
        }

        .outcome-analysis-box ul {
            margin: 8px 0 0;
            padding-left: 18px;
            color: var(--text-secondary);
            font-size: 0.82rem;
        }

        .outcome-analysis-inline {
            margin: 6px 0 0;
            color: var(--text-secondary);
            font-size: 0.8rem;
            line-height: 1.45;
        }

        .checklist-inline-summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin: 12px 0;
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: #f8fafc;
        }

        .checklist-inline-summary strong {
            color: var(--text);
            font-size: 0.9rem;
        }

        .checklist-inline-summary span {
            color: var(--text-secondary);
            font-size: 0.8rem;
            font-weight: 800;
        }

        .checklist-summary-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 8px;
            margin: 12px 0;
        }

        .checklist-summary-grid div {
            padding: 10px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: #fff;
        }

        .checklist-summary-grid strong {
            display: block;
            color: var(--primary);
            font-size: 1rem;
        }

        .checklist-summary-grid span {
            color: var(--text-secondary);
            font-size: 0.76rem;
            font-weight: 800;
        }

        .checklist-items {
            display: grid;
            gap: 8px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .checklist-item {
            display: grid;
            grid-template-columns: 14px 1fr;
            gap: 10px;
            padding: 10px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: #fff;
        }

        .checklist-item.is-progress-done {
            border-color: rgba(34, 197, 94, 0.34);
            background: #f0fdf4;
        }

        .checklist-item.is-progress-on_hold {
            border-color: rgba(245, 158, 11, 0.36);
            background: #fffbeb;
        }

        .checklist-item.is-progress-not_applicable {
            background: #f8fafc;
            color: var(--text-secondary);
        }

        .checklist-marker {
            width: 12px;
            height: 12px;
            margin-top: 3px;
            border-radius: 50%;
            background: #94a3b8;
        }

        .checklist-item.is-blocker .checklist-marker {
            background: var(--danger);
        }

        .checklist-item.is-recommended .checklist-marker {
            background: #f59e0b;
        }

        .checklist-item.is-optional .checklist-marker {
            background: #22c55e;
        }

        .checklist-item.is-progress-done .checklist-marker {
            background: #16a34a;
        }

        .checklist-item.is-progress-not_applicable .checklist-marker {
            background: #cbd5e1;
        }

        .checklist-item strong {
            display: block;
            color: var(--text);
            font-size: 0.9rem;
        }

        .checklist-item p {
            margin: 4px 0;
            color: var(--text-secondary);
            font-size: 0.82rem;
            line-height: 1.45;
        }

        .checklist-note {
            padding: 6px 8px;
            border-radius: var(--radius-sm);
            background: rgba(15, 23, 42, 0.04);
        }

        .checklist-item span:not(.checklist-marker) {
            color: var(--text-secondary);
            font-size: 0.74rem;
            font-weight: 900;
        }

        .checklist-item-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 8px;
        }

        .checklist-status-button {
            min-height: 26px;
            padding: 0 9px;
            border: 1px solid var(--border);
            border-radius: 999px;
            background: #fff;
            color: var(--text-secondary);
            font-size: 0.74rem;
            font-weight: 900;
            cursor: pointer;
        }

        .checklist-status-button:hover,
        .checklist-status-button:focus-visible,
        .checklist-status-button.is-active {
            color: var(--primary);
            border-color: rgba(37, 99, 235, 0.45);
            background: rgba(37, 99, 235, 0.08);
        }

        .icon-button {
            border: none;
            background: transparent;
            cursor: pointer;
            font-size: 1.15rem;
            line-height: 1;
            padding: 4px;
        }

        .status-text.is-danger {
            color: var(--danger);
            font-weight: 700;
        }

        .form-container-wide {
            max-width: 900px;
        }

        .form-section-title,
        .subsection-title {
            margin: 1.4rem 0 1rem;
            font-size: 1.05rem;
        }

        .profile-step-section {
            padding-top: 1.25rem;
            margin-top: 1.25rem;
            border-top: 1px solid var(--border);
        }

        .profile-step-section:first-of-type {
            margin-top: 0;
        }

        .profile-step-head {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            align-items: flex-start;
        }

        .profile-step-head .form-section-title {
            margin-top: 0;
        }

        .profile-step-meta {
            flex: 0 0 auto;
            padding: 5px 8px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            color: var(--text-secondary);
            font-size: 0.78rem;
            background: #f8fafc;
        }

        .profile-step-details > summary,
        .form-subdetails > summary {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            align-items: center;
            cursor: pointer;
            list-style: none;
            font-weight: 700;
            color: var(--text-primary);
        }

        .profile-step-details > summary::-webkit-details-marker,
        .form-subdetails > summary::-webkit-details-marker {
            display: none;
        }

        .profile-step-details > summary::after,
        .form-subdetails > summary::after {
            content: '+';
            flex: 0 0 auto;
            color: var(--primary);
            font-size: 1.1rem;
            line-height: 1;
        }

        .profile-step-details[open] > summary::after,
        .form-subdetails[open] > summary::after {
            content: '-';
        }

        .profile-step-details > summary small {
            display: block;
            color: var(--text-secondary);
            font-size: 0.82rem;
            font-weight: 500;
            line-height: 1.4;
        }

        .profile-step-details form {
            margin-top: 1rem;
        }

        .form-subdetails {
            margin: 0.65rem 0 1rem;
        }

        .form-subdetails > summary {
            justify-content: flex-start;
            padding: 8px 0;
            color: var(--primary);
            font-size: 0.9rem;
        }

        .muted {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .choice-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 8px;
        }

        .radio-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .choice {
            display: flex !important;
            align-items: flex-start;
            gap: 8px;
            padding: 9px 12px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: white;
            cursor: pointer;
            font-weight: 500 !important;
            margin: 0 !important;
        }

        .choice input {
            width: auto;
            margin-top: 2px;
        }

        .choice span {
            min-width: 0;
            line-height: 1.35;
        }

        .choice span b {
            display: block;
            font-size: 0.9rem;
            font-weight: 700;
        }

        .choice span small {
            display: block;
            margin-top: 3px;
            color: var(--text-secondary);
            font-size: 0.76rem;
            font-weight: 500;
            line-height: 1.35;
        }

        .profile-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .workspace-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
            gap: 12px;
            margin-bottom: 1rem;
        }

        .workspace-metric {
            padding: 1rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: #fff;
            box-shadow: var(--shadow);
        }

        .workspace-metric strong {
            display: block;
            color: var(--text);
            font-size: 1.4rem;
            line-height: 1.2;
        }

        .workspace-metric p {
            margin: 6px 0 0;
            color: var(--text-secondary);
            font-size: 0.82rem;
            font-weight: 700;
        }

        .profile-actions,
        .modal-actions {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .btn-sm {
            padding: 8px 16px;
            font-size: 0.85rem;
        }

        .btn-danger {
            background: var(--danger);
            color: white;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 12px;
            margin-top: 1rem;
        }

        .note-box {
            margin-top: 1rem;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: var(--radius-sm);
        }

        .billing-history-list {
            display: grid;
            gap: 10px;
            margin-top: 1rem;
        }

        .billing-history-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: #fff;
        }

        .billing-history-row p {
            margin: 4px 0 0;
        }

        .billing-history-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 8px;
            flex-wrap: wrap;
            min-width: 180px;
        }

        .billing-evidence-guide {
            margin-top: 12px;
            color: var(--text-secondary);
            font-size: 0.88rem;
        }

        .billing-evidence-guide p {
            margin: 4px 0;
        }

        .tag-list {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 5px 9px;
            border-radius: var(--radius-sm);
            background: #eef2ff;
            color: var(--primary);
            font-size: 0.82rem;
            font-weight: 700;
        }

        .compact {
            padding: 1.5rem 1rem;
        }

        .warning-box {
            background: #fff3cd;
            border-left-color: var(--accent);
        }

        .warning-text {
            margin-top: 10px;
            color: #b06000;
            font-size: 0.88rem;
            font-weight: 700;
        }

        .email-verification-notice {
            display: grid;
            gap: 10px;
            margin-top: 14px;
            padding: 14px;
            border: 1px solid #f1c56d;
            border-radius: 10px;
            background: #fff8e7;
            color: #6f4200;
        }

        .email-verification-notice p {
            margin: 0;
            color: #7c560b;
            font-size: 0.92rem;
            line-height: 1.55;
        }

        .email-verification-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .auth-card {
            max-width: 560px;
        }

        .auth-switch {
            margin-top: 12px;
        }

        .social-auth {
            display: grid;
            gap: 8px;
            margin: 14px 0;
        }

        .social-login {
            justify-content: center;
            font-weight: 700;
        }

        .kakao-login {
            background: #fee500;
            color: #191919;
            border-color: #fee500;
        }

        .kakao-login:hover {
            background: #f6dc00;
            border-color: #f6dc00;
            color: #191919;
        }

        .auth-divider {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 16px 0;
            color: var(--text-secondary);
            font-size: 0.82rem;
        }

        .auth-divider::before,
        .auth-divider::after {
            content: '';
            height: 1px;
            flex: 1;
            background: var(--border);
        }

        .auth-consents {
            display: grid;
            gap: 8px;
            margin: 12px 0;
        }

        .signup-consent-panel {
            margin: 16px 0 14px;
        }

        .privacy-consent-box {
            border: 1px solid var(--border);
            border-radius: 12px;
            background: #fff;
            overflow: hidden;
        }

        .privacy-consent-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 12px 14px;
            border-bottom: 1px solid var(--border-soft);
            background: var(--bg-subtle);
        }

        .privacy-consent-head strong {
            color: var(--text-strong);
            font-size: 0.92rem;
            font-weight: 800;
        }

        .privacy-consent-head span {
            color: var(--text-tertiary);
            font-size: 0.76rem;
            font-weight: 700;
            white-space: nowrap;
        }

        .privacy-consent-scroll {
            max-height: 178px;
            overflow-y: auto;
            padding: 12px 14px;
            color: var(--text-secondary);
            font-size: 0.82rem;
            line-height: 1.55;
        }

        .privacy-consent-scroll section + section {
            margin-top: 12px;
        }

        .privacy-consent-scroll h3 {
            margin: 0 0 6px;
            color: var(--text-strong);
            font-size: 0.84rem;
            font-weight: 800;
        }

        .privacy-consent-scroll p {
            margin: 3px 0;
        }

        .consent-detail-link {
            width: 100%;
            justify-content: center;
            padding: 10px 12px;
            border-top: 1px solid var(--border-soft);
        }

        .consent-doc-row {
            justify-content: space-between;
        }

        .choice-label {
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: 0;
            cursor: pointer;
        }

        .inline-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            border: 0;
            background: transparent;
            color: var(--primary);
            font: inherit;
            font-size: 0.82rem;
            font-weight: 800;
            cursor: pointer;
        }

        .inline-link:hover {
            color: var(--primary-hover);
            text-decoration: underline;
        }

        .consent-all-row {
            background: var(--primary-tint);
            border-color: rgba(49,130,246,0.26);
        }

        .compact-choice {
            padding: 8px 10px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: #f8f9fa;
            font-size: 0.86rem;
        }

        .compact-choice small {
            display: block;
            margin-top: 3px;
            color: var(--text-tertiary);
            font-size: 0.76rem;
            line-height: 1.35;
        }

        .consent-info-note {
            padding: 9px 10px;
            border: 1px solid #bfdbfe;
            border-radius: var(--radius-sm);
            background: #eff6ff;
            color: #1e3a8a;
            font-size: 0.8rem;
            line-height: 1.45;
        }

        @media (max-width: 768px) {
            .report-gate {
                grid-template-columns: 1fr;
            }

            .report-gate-copy h2,
            .empty-conversion h2 {
                font-size: 1.45rem;
            }

            .reward-band {
                align-items: stretch;
                flex-direction: column;
            }

            .reward-band .btn {
                width: 100%;
                justify-content: center;
            }

            .pro-unlock-panel,
            .prep-lock-card,
            .upgrade-roi-grid,
            .upgrade-prep-preview,
            .upgrade-plan-focus {
                grid-template-columns: 1fr;
            }

            .empty-conversion {
                padding: 1.6rem 1rem;
            }
        }


        /* ============================================================
           UNIFIED VISUAL SYSTEM — single blue, calm whitespace
           Overrides all earlier hardcoded teal/gradient styles.
           ============================================================ */

        /* Reset legacy primaries to one trust blue */
        body {
            background: var(--bg);
            color: var(--text);
            font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', sans-serif;
            font-feature-settings: "ss06", "tnum";
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            letter-spacing: -0.005em;
            position: relative;
        }

        /* Soft ambient backdrop — fills the gutters on wide screens */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background:
                radial-gradient(1200px 700px at 85% -10%, rgba(49,130,246,0.10), transparent 60%),
                radial-gradient(900px 600px at -10% 30%, rgba(49,130,246,0.06), transparent 60%),
                radial-gradient(900px 600px at 100% 110%, rgba(94,106,210,0.05), transparent 60%);
        }

        /* Subtle grid lines on the body backdrop — Linear-ish texture */
        body::after {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(13,18,30,0.022) 1px, transparent 1px),
                linear-gradient(90deg, rgba(13,18,30,0.022) 1px, transparent 1px);
            background-size: 32px 32px;
            mask-image: radial-gradient(1400px 900px at 50% 0%, #000 30%, transparent 75%);
            -webkit-mask-image: radial-gradient(1400px 900px at 50% 0%, #000 30%, transparent 75%);
        }

        .navbar, .main-container, .site-footer { position: relative; z-index: 1; }

        .main-container {
            max-width: 1280px;
            padding: 2.5rem 2rem 4rem;
        }
        .navbar-inner { max-width: 1280px; }
        .site-footer-inner { max-width: 1280px; padding: 0 2rem; }

        /* ===== Navbar ===== */
        .navbar {
            background: rgba(255,255,255,0.82);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 1px solid var(--border-soft);
            box-shadow: none;
        }
        .navbar-inner { height: 72px; }
        .logo {
            color: var(--text-strong);
            font-weight: 800;
            letter-spacing: -0.02em;
            font-size: 1.5rem;
            align-items: flex-end;
            gap: 14px;
            padding: 0;
        }
        .logo-icon {
            width: 46px; height: 46px;
            border-radius: 13px;
            display: block;
            object-fit: contain;
            flex: 0 0 auto;
            box-shadow: 0 6px 16px rgba(49,130,246,0.32);
        }
        .logo-image {
            height: 44px;
            max-width: 96px;
        }
        .logo-wordmark {
            display: inline-flex;
            align-items: baseline;
            line-height: 1.1;
            gap: 2px;
            transform: translateY(-3px);
        }
        .logo-wordmark b {
            font-weight: 900;
            color: var(--primary);
            letter-spacing: -0.03em;
            font-size: 1.5rem;
        }
        .logo-wordmark small {
            color: var(--text-tertiary);
            font-size: 0.92rem;
            font-weight: 600;
            letter-spacing: -0.005em;
        }

        /* Nav items pushed to the right */
        .nav-links {
            margin-left: auto;
            flex: 0 0 auto;
            justify-content: flex-end;
        }
        .nav-links a, .nav-btn { color: var(--text-secondary); font-weight: 600; font-size: 0.92rem; }
        .nav-links a:hover, .nav-btn:hover { background: var(--primary-soft); color: var(--primary-dark); }
        .nav-links a.active, .nav-btn.active {
            background: var(--primary-soft);
            color: var(--primary-dark);
        }
        .auth-pill { background: var(--bg-subtle); color: var(--text-secondary); }

        /* ===== Buttons — single blue family ===== */
        .btn {
            border-radius: 12px;
            font-weight: 700;
            letter-spacing: -0.01em;
            transition: var(--transition);
            padding: 12px 22px;
        }
        .btn:hover { transform: translateY(-1px); }
        .btn:active { transform: translateY(0); }
        .btn:disabled {
            cursor: not-allowed;
            opacity: 0.48;
            transform: none;
            box-shadow: none !important;
        }
        .btn-lg { padding: 16px 30px; font-size: 1.05rem; }

        .btn-primary {
            background: var(--primary) !important;
            color: #fff !important;
            font-weight: 700 !important;
            box-shadow: 0 8px 20px rgba(49,130,246,0.28) !important;
            border: 1px solid transparent !important;
            padding: 12px 22px !important;
        }
        .btn-primary:hover {
            background: var(--primary-hover) !important;
            box-shadow: 0 12px 28px rgba(49,130,246,0.36) !important;
        }
        .btn-primary.btn-lg { padding: 16px 30px !important; font-size: 1.05rem !important; }

        /* The "money button" — single biggest CTA, still blue but darker + arrow */
        .btn-hot {
            background: linear-gradient(180deg, #3D8BFA, #2768E0) !important;
            color: #fff !important;
            font-weight: 800 !important;
            border: 1px solid transparent !important;
            box-shadow: 0 10px 28px rgba(39,104,224,0.40), inset 0 1px 0 rgba(255,255,255,0.20) !important;
            padding: 16px 30px !important;
            font-size: 1.05rem !important;
        }
        .btn-hot:hover {
            background: linear-gradient(180deg, #4593FA, #1B64DA) !important;
            box-shadow: 0 14px 32px rgba(39,104,224,0.48) !important;
        }
        .btn-hot::after {
            content: '→';
            margin-left: 8px;
            display: inline-block;
            transition: transform 0.2s ease;
        }
        .btn-hot:hover::after { transform: translateX(4px); }

        .btn-outline {
            border: 1.5px solid var(--border-strong) !important;
            color: var(--text) !important;
            background: #fff !important;
            font-weight: 700 !important;
            box-shadow: var(--shadow-sm) !important;
        }
        .btn-outline:hover {
            background: var(--primary-tint) !important;
            border-color: var(--primary) !important;
            color: var(--primary-dark) !important;
        }

        .btn-ghost-light {
            background: #fff !important;
            color: var(--text) !important;
            border: 1.5px solid var(--border) !important;
            box-shadow: var(--shadow-sm) !important;
            font-weight: 700 !important;
        }
        .btn-ghost-light:hover {
            background: var(--bg-subtle) !important;
            border-color: var(--border-strong) !important;
        }

        /* ===== Brand name highlight — inline blue for "콕(Kok)" in body copy ===== */
        .brand {
            color: var(--primary);
            font-weight: 800;
            letter-spacing: -0.005em;
        }
        /* Brand on dark blue surfaces — use warm cream so it pops */
        .auth-copy .brand,
        .final-cta .brand {
            color: #FFE7A8;
        }
        /* Brand inside a primary-colored chip/button — use white */
        .stake-card.is-win .stake-tag .brand,
        .btn-primary .brand,
        .btn-hot .brand {
            color: #fff;
        }

        /* ===== Eyebrow — single style across the page ===== */
        .eyebrow,
        .conversion-copy .eyebrow,
        .preview-kicker {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 999px;
            background: var(--primary-soft);
            color: var(--primary-dark);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0;
            text-transform: none;
            margin-bottom: 18px;
            border: 1px solid rgba(49,130,246,0.14);
        }

        /* Hero eyebrow gets a touch more presence */
        .conversion-copy .eyebrow {
            padding: 8px 16px;
            font-size: 0.92rem;
            font-weight: 800;
            letter-spacing: -0.005em;
            margin-bottom: 22px;
            box-shadow: 0 4px 12px rgba(49,130,246,0.12);
        }
        .conversion-copy .eyebrow::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 999px;
            background: var(--primary);
            box-shadow: 0 0 0 3px rgba(49,130,246,0.18);
        }

        /* ===== Hero — clean, confident, single blue accent ===== */
        .conversion-hero {
            display: grid;
            grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.9fr);
            gap: 40px;
            align-items: center;
            margin: 0 0 5rem;
            padding: 4rem 2.5rem;
            position: relative;
            overflow: hidden;
            background: #fff;
            border: 1px solid var(--border-soft);
            border-radius: 24px;
            color: var(--text);
            box-shadow: 0 1px 2px rgba(13,18,30,0.04), 0 20px 40px rgba(13,18,30,0.04);
        }
        .conversion-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(700px 360px at 100% -20%, rgba(49,130,246,0.10), transparent 60%),
                radial-gradient(500px 300px at -10% 110%, rgba(49,130,246,0.06), transparent 60%);
            pointer-events: none;
        }
        .conversion-hero > * { position: relative; z-index: 1; }
        .conversion-copy { min-height: 0; }

        .conversion-copy h1 {
            color: var(--text-strong);
            font-weight: 900;
            font-size: 3.8rem;
            line-height: 1.1;
            letter-spacing: -0.04em;
            text-wrap: balance;
            word-break: keep-all;
            overflow-wrap: break-word;
            margin: 0 0 1.4rem;
            max-width: 660px;
        }
        .conversion-copy h1 .hl { color: var(--primary); }
        .conversion-copy h1 .hl-hot { color: var(--primary); }
        .conversion-copy h1 .underline {
            color: var(--primary);
            position: relative;
            white-space: nowrap;
        }
        .conversion-copy h1 .underline::after {
            content: '';
            position: absolute;
            left: 0; right: 0; bottom: 0.06em;
            height: 0.18em;
            background: linear-gradient(90deg, rgba(49,130,246,0.34), rgba(49,130,246,0));
            border-radius: 999px;
            z-index: -1;
        }

        .conversion-copy .subtitle {
            color: var(--text-secondary);
            font-size: 1.18rem;
            line-height: 1.6;
            max-width: 540px;
            margin-bottom: 2rem;
            font-weight: 500;
        }
        .conversion-copy .subtitle strong { color: var(--text-strong); font-weight: 700; }
        .conversion-copy .subtitle .subtitle-highlight {
            color: var(--text-strong);
            font-weight: 800;
            background: linear-gradient(transparent 62%, rgba(27, 100, 218, 0.16) 0);
            box-decoration-break: clone;
            -webkit-box-decoration-break: clone;
            padding: 0 0.04em;
        }
        .conversion-copy .subtitle .subtitle-count,
        .conversion-copy .subtitle .subtitle-channel {
            color: var(--primary);
            font-weight: 800;
        }

        .money-line { display: none; } /* legacy */

        .hero-actions { gap: 12px; align-items: center; }

        /* Inline trust microcopy under CTAs — replaces trust-band */
        .hero-microline {
            margin-top: 1.4rem;
            color: var(--text-tertiary);
            font-size: 0.86rem;
            font-weight: 600;
            letter-spacing: -0.005em;
        }

        .hero-proof {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-soft);
        }
        .hero-proof span {
            background: transparent;
            border: none;
            color: var(--text-tertiary);
            font-weight: 600;
            font-size: 0.84rem;
            padding: 0;
            border-radius: 0;
            box-shadow: none;
        }
        .hero-proof span::before {
            content: '✓';
            color: var(--primary);
            margin-right: 6px;
            font-weight: 900;
        }

        /* Live preview card on the right of hero — signature product moment */
        .report-preview,
        .sample-report-card {
            background: #fff;
            color: var(--text);
            border: 1px solid var(--border);
            border-radius: 18px;
            box-shadow:
                0 1px 2px rgba(13,18,30,0.04),
                0 32px 80px rgba(13,18,30,0.12),
                0 12px 24px rgba(49,130,246,0.08);
            padding: 1.5rem;
            position: relative;
        }
        .report-preview::before {
            content: '';
            position: absolute;
            inset: -1px;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(49,130,246,0.30), rgba(49,130,246,0) 50%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            padding: 1px;
            pointer-events: none;
        }
        .preview-kicker {
            margin-bottom: 8px;
            padding: 4px 10px;
            font-size: 0.7rem;
        }
        .report-preview strong {
            font-size: 1.05rem;
            color: var(--text-strong);
            letter-spacing: -0.01em;
        }
        .preview-status {
            background: var(--primary-soft);
            color: var(--primary-dark);
            font-weight: 700;
            padding: 5px 10px;
            font-size: 0.74rem;
        }
        .preview-status::before {
            content: '';
            display: inline-block;
            width: 6px; height: 6px;
            border-radius: 999px;
            background: var(--primary);
            margin-right: 6px;
            vertical-align: middle;
            box-shadow: 0 0 0 3px rgba(49,130,246,0.20);
            animation: pulseDot 2s ease-in-out infinite;
        }
        @keyframes pulseDot {
            0%,100% { box-shadow: 0 0 0 3px rgba(49,130,246,0.20); }
            50% { box-shadow: 0 0 0 6px rgba(49,130,246,0.06); }
        }
        .preview-metrics div,
        .preview-row {
            background: var(--bg);
            border: 1px solid var(--border-soft);
            border-radius: 10px;
        }
        .preview-row { padding: 12px 14px; }
        .preview-metrics strong { color: var(--text-strong); font-weight: 800; }
        .preview-metrics span { font-weight: 600; }
        .preview-metrics > div > span { white-space: nowrap; }
        .preview-metrics > div > span .brand { display: inline; }
        .preview-score b { color: var(--primary); font-weight: 800; }

        /* Preview row tier coloring + score bar */
        .preview-row.is-good { background: #fff; border-color: rgba(49,130,246,0.32); box-shadow: 0 1px 2px rgba(49,130,246,0.06); }
        .preview-row.is-mid { background: #fff; }
        .preview-row.is-bad { background: #fff; }
        .preview-row-main { min-width: 0; }
        .preview-row-main strong {
            display: block;
            color: var(--text-strong);
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            line-height: 1.35;
            margin-bottom: 2px;
        }
        .preview-row-main span {
            display: block;
            color: var(--text-tertiary);
            font-size: 0.76rem;
            font-weight: 600;
            margin-bottom: 6px;
        }
        .preview-bar {
            height: 4px;
            border-radius: 999px;
            background: var(--border-soft);
            overflow: hidden;
        }
        .preview-bar i {
            display: block;
            height: 100%;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--primary-hover), var(--primary));
            box-shadow: 0 0 8px rgba(49,130,246,0.32);
            animation: barShimmer 1.4s ease-out;
        }
        .preview-row.is-mid .preview-bar i { background: linear-gradient(90deg, #FFC56B, #FFB200); box-shadow: none; }
        .preview-row.is-bad .preview-bar i { background: linear-gradient(90deg, #F88C97, #F04452); box-shadow: none; }
        @keyframes barShimmer {
            from { width: 0 !important; opacity: 0.4; }
            to { opacity: 1; }
        }
        .preview-score {
            text-align: right;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 2px;
            min-width: 64px;
        }
        .preview-score b {
            color: var(--primary-dark);
            font-weight: 800;
            font-size: 0.82rem;
        }
        .preview-row.is-mid .preview-score b { color: #8E5A00; }
        .preview-row.is-bad .preview-score b { color: #B6253A; }
        .preview-score span { color: var(--text-tertiary); font-size: 0.78rem; font-weight: 700; }

        /* ===== Section spacing ===== */
        .section.active > * + * { margin-top: 0; }
        .section.active { display: block; }
        .section-head { margin: 0 0 1.6rem; }
        .section-head .eyebrow { margin-bottom: 12px; }
        .section-head h2 { margin: 0 0 6px; }
        .section-head .muted { color: var(--text-secondary); font-size: 1rem; max-width: 640px; }

        .section-title {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: -0.025em;
            color: var(--text-strong);
            line-height: 1.2;
        }

        /* Wrappers around each big section give them air */
        .conversion-hero,
        .stats-row,
        .hook-grid,
        .stake-grid,
        .compare-wrap,
        .workflow-band,
        .pricing-section,
        .faq-section,
        .roi-band,
        .final-cta,
        .card-grid,
        .story-block {
            margin-bottom: 5rem !important;
        }
        .section-head + .stake-grid,
        .section-head + .compare-wrap,
        .section-head + .workflow-band,
        .section-head + .pricing-grid,
        .section-head + .faq-list,
        .section-head + .card-grid,
        .section-head + .roi-grid {
            margin-top: 0;
        }
        .section-head { margin-bottom: 1.8rem; }
        h2 + .muted { margin-top: 6px; }

        /* ===== Stats — bigger, calmer ===== */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            background: transparent;
        }
        .stat-card {
            background: transparent;
            border: none;
            border-right: 1px solid var(--border-soft);
            box-shadow: none;
            border-radius: 0;
            padding: 0.4rem 1.4rem;
            text-align: left;
            transition: none;
        }
        .stat-card:hover { transform: none; box-shadow: none; }
        .stat-card:first-child { padding-left: 0; }
        .stat-card:last-child { border-right: none; }
        .stat-card .stat-number {
            font-size: 2.6rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: var(--text-strong);
            line-height: 1;
            font-variant-numeric: tabular-nums;
        }
        .stat-card .stat-label {
            font-weight: 600;
            color: var(--text-secondary);
            font-size: 0.86rem;
            margin-top: 8px;
        }

        /* ===== Hook grid — flat, calm, 3 columns ===== */
        .hook-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .hook-block {
            background: #fff;
            border: 1px solid var(--border);
            box-shadow: none;
            border-radius: 16px;
            padding: 1.8rem;
        }
        .hook-block.is-paid,
        .hook-block.is-pain {
            background: #fff;
            border-color: var(--border);
        }
        .hook-label {
            background: var(--bg-subtle);
            color: var(--text-secondary);
            font-weight: 800;
            padding: 4px 10px;
            font-size: 0.72rem;
            margin-bottom: 14px;
        }
        .hook-block.is-paid .hook-label {
            background: var(--primary-soft);
            color: var(--primary-dark);
        }
        .hook-block h3 {
            color: var(--text-strong);
            font-weight: 800;
            font-size: 1.18rem;
            line-height: 1.4;
            letter-spacing: -0.015em;
            margin: 0 0 10px;
        }
        .hook-block p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.65;
        }

        /* ===== Stake grid — subtle red on left, blue on right ===== */
        .stake-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .stake-card {
            position: relative;
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid var(--border);
            background: #fff;
            box-shadow: none;
        }
        .stake-card.is-loss {
            background: #fff;
            border-color: var(--border);
        }
        .stake-card.is-win {
            background: var(--primary-tint);
            border-color: var(--primary-soft);
            box-shadow: 0 0 0 1px var(--primary-soft) inset;
        }
        .stake-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 11px;
            border-radius: 999px;
            font-size: 0.74rem;
            font-weight: 800;
            margin-bottom: 16px;
        }
        .stake-card.is-loss .stake-tag {
            background: #FFF1F2;
            color: #B6253A;
        }
        .stake-card.is-win .stake-tag {
            background: var(--primary);
            color: #fff;
        }
        .stake-card h3 {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--text-strong);
            margin-bottom: 16px;
            letter-spacing: -0.015em;
            line-height: 1.35;
        }
        .stake-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
        .stake-card li {
            position: relative;
            padding-left: 26px;
            color: var(--text-secondary);
            font-size: 0.94rem;
            line-height: 1.55;
        }
        .stake-card.is-loss li::before {
            content: '✕';
            position: absolute;
            left: 0; top: 0;
            color: #C44A56;
            font-weight: 900;
        }
        .stake-card.is-win li::before {
            content: '✓';
            position: absolute;
            left: 0; top: 0;
            color: var(--primary);
            font-weight: 900;
        }

        /* ===== Compare table — clean, single blue column ===== */
        .compare-wrap {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }
        .compare-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin: 0;
            border: none;
            border-radius: 0;
            box-shadow: none;
            font-size: 0.95rem;
        }
        .compare-table th,
        .compare-table td {
            padding: 18px 22px;
            border-bottom: 1px solid var(--border-soft);
            text-align: left;
            vertical-align: middle;
        }
        .compare-table thead th {
            background: #fff;
            color: var(--text-tertiary);
            font-size: 0.78rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .compare-table thead th.col-kok {
            color: var(--primary);
            text-align: left;
        }
        .compare-table tbody td:first-child {
            color: var(--text-secondary);
            font-weight: 600;
            background: transparent;
            width: 30%;
        }
        .compare-table tbody td.col-manual {
            color: var(--text-tertiary);
            text-decoration: none;
        }
        .compare-table tbody td.col-manual::before {
            content: '';
            display: inline-block;
            width: 6px; height: 6px;
            border-radius: 999px;
            background: var(--border-strong);
            margin-right: 10px;
            vertical-align: middle;
        }
        .compare-table tbody td.col-kok {
            color: var(--text-strong);
            font-weight: 700;
            background: transparent;
            text-align: left;
            border-left: none;
            border-right: none;
        }
        .compare-table tbody td.col-kok::before {
            content: '✓';
            display: inline-block;
            color: var(--primary);
            margin-right: 10px;
            font-weight: 900;
        }
        .compare-table tbody tr:last-child td { border-bottom: none; }

        /* ===== Workflow band ===== */
        .workflow-band {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            background: transparent;
            border: none;
            border-radius: 0;
            overflow: visible;
            padding: 0;
        }
        .workflow-band > div {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.6rem;
        }
        .workflow-band strong {
            color: var(--text-strong);
            font-weight: 800;
            font-size: 1.05rem;
            display: block;
            margin: 14px 0 6px;
        }
        .workflow-band p {
            color: var(--text-secondary);
            font-size: 0.92rem;
            line-height: 1.55;
        }
        .workflow-step {
            background: var(--primary-soft);
            color: var(--primary-dark);
            width: 34px; height: 34px;
            font-size: 0.9rem;
            font-weight: 900;
            box-shadow: none;
            border-radius: 10px;
        }

        /* ===== Pricing ===== */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .plan-card {
            background: #fff;
            border: 1px solid var(--border);
            box-shadow: none;
            border-radius: 16px;
            padding: 2rem 1.8rem;
            gap: 16px;
        }
        .plan-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
            border-color: var(--border-strong);
        }
        .plan-card.is-featured {
            border-color: var(--primary);
            background: #fff;
            box-shadow: 0 0 0 4px var(--primary-soft);
            transform: translateY(-6px);
        }
        .plan-card.is-featured:hover {
            box-shadow: 0 0 0 4px var(--primary-soft), 0 16px 36px rgba(49,130,246,0.18);
        }
        .plan-ribbon {
            background: var(--primary);
            color: #fff;
            font-weight: 800;
            box-shadow: 0 4px 10px rgba(49,130,246,0.32);
            padding: 5px 11px;
            font-size: 0.72rem;
            top: 14px;
            right: 14px;
        }
        .plan-head span {
            color: var(--text-tertiary);
            font-weight: 700;
            font-size: 0.84rem;
            letter-spacing: 0;
        }
        .plan-head strong {
            color: var(--text-strong);
            font-weight: 900;
            font-size: 2rem;
            letter-spacing: -0.025em;
            margin-top: 4px;
        }
        .plan-card p {
            color: var(--text-secondary);
            font-size: 0.94rem;
            line-height: 1.55;
        }
        .plan-card li {
            color: var(--text);
            padding-left: 22px;
        }
        .plan-card li::before,
        .upgrade-plan-focus li::before {
            background: var(--primary);
            width: 6px; height: 6px;
            box-shadow: none;
            top: 0.6em;
        }

        /* ===== Auth panel (signup left rail) ===== */
        .auth-copy {
            background: linear-gradient(160deg, #1B64DA 0%, #3182F6 100%);
            border: 1px solid rgba(255,255,255,0.10);
            box-shadow: 0 20px 50px rgba(27,100,218,0.28);
            color: #fff;
            border-radius: 18px;
        }
        .auth-copy .eyebrow {
            background: rgba(255,255,255,0.14);
            color: #DCE9FF;
            border: 1px solid rgba(255,255,255,0.16);
        }
        .auth-copy h2 { color: #fff; letter-spacing: -0.02em; }
        .auth-copy p { color: rgba(255,255,255,0.86); }
        .auth-benefits span {
            background: rgba(255,255,255,0.10);
            border: 1px solid rgba(255,255,255,0.18);
            color: #fff;
            backdrop-filter: blur(6px);
        }
        .auth-proof-row div {
            background: rgba(255,255,255,0.10);
            border: 1px solid rgba(255,255,255,0.18);
        }
        .auth-proof-row strong { color: #FFE7A8; }
        .auth-proof-row span { color: rgba(255,255,255,0.78); }
        .auth-mini-report {
            background: rgba(255,255,255,0.12);
            border-color: rgba(255,255,255,0.22);
        }
        .auth-mini-report strong { color: #fff; }
        .auth-mini-report p { color: rgba(255,255,255,0.82); }
        .auth-next-card,
        .upgrade-prep-preview,
        .prep-lock-card {
            background: var(--primary-tint);
            border: 1px solid var(--primary-soft);
        }
        .prep-blur-sample::after {
            background: rgba(244,248,255,0.78);
            color: var(--primary);
        }

        /* ===== Story block — light card with blue quote bar ===== */
        .story-block {
            background: #fff;
            border: 1px solid var(--border);
            border-left: 4px solid var(--primary);
            color: var(--text);
            box-shadow: none;
            border-radius: 12px;
            padding: 2rem 2.4rem;
        }
        .story-block::before { display: none; }
        .story-quote {
            color: var(--text-strong);
            font-style: normal;
            font-weight: 600;
            font-size: 1.18rem;
            line-height: 1.65;
            margin: 0 0 12px;
            letter-spacing: -0.015em;
        }
        .story-author { color: var(--text-tertiary); }

        /* ===== ROI band ===== */
        .roi-band {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
            gap: 32px;
            align-items: center;
            padding: 2.4rem;
            background: var(--primary-tint);
            border: 1px solid var(--primary-soft);
            box-shadow: none;
            border-radius: 18px;
        }
        .roi-band h2 {
            color: var(--text-strong);
            font-size: 1.7rem;
            line-height: 1.3;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin: 0 0 10px;
        }
        .roi-band p { color: var(--text-secondary); font-size: 1rem; line-height: 1.65; }
        .roi-band p strong { color: var(--text-strong); }
        .roi-metrics { gap: 10px; }
        .roi-metrics div {
            background: #fff;
            border: 1px solid var(--primary-soft);
            padding: 14px 16px;
            border-radius: 10px;
        }
        .roi-metrics strong {
            color: var(--text-strong);
            font-weight: 900;
            font-size: 1.4rem;
            line-height: 1.05;
            letter-spacing: -0.02em;
        }
        .roi-metrics span { color: var(--text-tertiary); font-weight: 600; }

        /* ===== Decision pills ===== */
        .decision-good { background: var(--primary-soft); color: var(--primary-dark); border-color: rgba(49,130,246,0.2); }
        .decision-review { background: var(--bg-subtle); color: var(--text-secondary); border-color: var(--border); }
        .decision-bad { background: #FFF1F2; color: #B6253A; border-color: rgba(240,68,82,0.2); }

        /* ===== Category badges — single soft palette ===== */
        .badge-funding { background: var(--primary-soft); color: var(--primary-dark); }
        .badge-loan { background: var(--bg-subtle); color: var(--text-secondary); }
        .badge-startup { background: #ECFDF5; color: #047857; }
        .badge-consulting { background: var(--primary-soft); color: var(--primary-dark); }
        .badge-tax { background: #FFF1F2; color: #B6253A; }
        .badge-export { background: var(--bg-subtle); color: var(--text-secondary); }
        .badge-rd { background: #EEF2FF; color: #3730A3; }
        .badge-hr { background: #F0F9FF; color: #0369A1; }
        .badge-other { background: #F3F4F6; color: #4B5563; }

        /* ===== Forms ===== */
        .form-group input,
        .form-group select,
        .form-group textarea,
        .search-bar input,
        .search-bar select {
            background: #fff;
            border: 1.5px solid var(--border);
            border-radius: 12px;
            padding: 12px 14px;
            font-size: 0.95rem;
            color: var(--text);
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus,
        .search-bar input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(49,130,246,0.14);
        }
        .form-group input::placeholder,
        .form-group textarea::placeholder { color: var(--text-tertiary); }

        .choice {
            background: #fff;
            border: 1.5px solid var(--border);
            border-radius: 12px;
        }
        .choice:has(input:checked) {
            border-color: var(--primary);
            background: var(--primary-tint);
            box-shadow: 0 0 0 4px rgba(49,130,246,0.10);
        }

        /* ===== Cards (program cards) ===== */
        .card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 14px;
            box-shadow: none;
            padding: 1.4rem;
        }
        .card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
            border-color: var(--border-strong);
        }
        .card.recommended {
            border-left: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 1px var(--primary) inset;
        }
        .card.recommended::before {
            background: var(--primary);
            color: #fff;
            font-weight: 800;
            border-radius: 999px;
            padding: 4px 9px;
            font-size: 0.7rem;
            box-shadow: none;
        }
        .card h3 {
            color: var(--text-strong);
            font-weight: 800;
            letter-spacing: -0.01em;
        }
        .match-score {
            background: var(--primary);
            color: #fff;
        }

        /* ===== Tabs ===== */
        .tab-nav {
            background: var(--bg-subtle);
            border-radius: 12px;
            padding: 5px;
        }
        .tab-nav button {
            color: var(--text-secondary);
            font-weight: 700;
            border-radius: 8px;
            padding: 10px 18px;
        }
        .tab-nav button.active {
            background: #fff;
            color: var(--primary-dark);
            box-shadow: var(--shadow-sm);
        }

        /* ===== Toast ===== */
        .toast {
            background: var(--text-strong);
            box-shadow: 0 16px 40px rgba(13,18,30,0.28);
            border-radius: 12px;
        }

        /* ===== Sample report ===== */
        .sample-report-head strong,
        .sample-report-row strong { color: var(--text-strong); }
        .sample-report-row { border-bottom-color: var(--border-soft); }
        .sample-report-row p { color: var(--text-secondary); }

        /* ===== FAQ ===== */
        .faq-list { display: grid; gap: 8px; }
        .faq-item {
            border: 1px solid var(--border);
            border-radius: 12px;
            background: #fff;
            overflow: hidden;
            box-shadow: none;
            transition: var(--transition);
        }
        .faq-item[open] { border-color: var(--primary-soft); }
        .faq-item summary {
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            padding: 18px 22px;
            cursor: pointer;
            font-weight: 700;
            color: var(--text-strong);
            font-size: 1rem;
            letter-spacing: -0.01em;
        }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item summary::after {
            content: '+';
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            border-radius: 999px;
            background: var(--bg-subtle);
            color: var(--text-secondary);
            font-weight: 900;
            transition: var(--transition);
        }
        .faq-item[open] summary::after {
            content: '−';
            background: var(--primary);
            color: #fff;
        }
        .faq-item .faq-body {
            padding: 0 22px 20px;
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* ===== Final CTA — clean blue, not dark ===== */
        .final-cta {
            position: relative;
            overflow: hidden;
            padding: 4rem 2.5rem;
            border-radius: 24px;
            background: linear-gradient(160deg, #1B64DA 0%, #3182F6 100%);
            color: #fff;
            text-align: center;
            box-shadow: 0 24px 60px rgba(27,100,218,0.32);
        }
        .final-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(600px 280px at 100% 0%, rgba(255,255,255,0.10), transparent 60%),
                radial-gradient(500px 280px at 0% 100%, rgba(255,255,255,0.08), transparent 60%);
            pointer-events: none;
        }
        .final-cta > * { position: relative; }
        .final-cta .eyebrow {
            background: rgba(255,255,255,0.14);
            color: #DCE9FF;
            border: 1px solid rgba(255,255,255,0.20);
        }
        .final-cta h2 {
            font-size: 2.6rem;
            font-weight: 900;
            line-height: 1.18;
            letter-spacing: -0.03em;
            margin: 0 0 1rem;
            color: #fff;
            text-wrap: balance;
        }
        .final-cta p {
            font-size: 1.08rem;
            color: rgba(255,255,255,0.82);
            max-width: 580px;
            margin: 0 auto 1.8rem;
            line-height: 1.65;
        }
        .final-cta .hero-actions { justify-content: center; }
        .final-cta .btn-hot {
            background: #fff !important;
            color: var(--primary-dark) !important;
            box-shadow: 0 10px 28px rgba(13,18,30,0.20) !important;
        }
        .final-cta .btn-hot:hover {
            background: #F4F8FF !important;
        }
        .final-cta .btn-ghost-light {
            background: rgba(255,255,255,0.10) !important;
            color: #fff !important;
            border: 1.5px solid rgba(255,255,255,0.32) !important;
            backdrop-filter: blur(6px);
        }
        .final-cta .btn-ghost-light:hover {
            background: rgba(255,255,255,0.18) !important;
        }
        .final-cta-meta {
            margin: 2rem auto 0;
            max-width: 760px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
        }
        .final-cta-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 14px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.22);
            border-radius: 999px;
            color: rgba(255,255,255,0.94);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: -0.005em;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .final-cta-meta span::before {
            content: '✓';
            color: #A5D6FF;
            font-weight: 900;
            font-size: 0.92rem;
            line-height: 1;
        }

        /* ===== Sticky CTA ===== */
        .sticky-cta {
            position: fixed;
            left: 50%;
            bottom: 22px;
            transform: translateX(-50%) translateY(10px);
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 10px 14px 10px 20px;
            border-radius: 999px;
            background: var(--text-strong);
            color: #fff;
            box-shadow: 0 18px 40px rgba(13,18,30,0.28);
            z-index: 1500;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease, transform 0.3s ease;
            max-width: calc(100% - 32px);
        }
        .sticky-cta.is-visible {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }
        .sticky-cta-text { font-weight: 700; font-size: 0.92rem; white-space: nowrap; }
        .sticky-cta-text small {
            display: block;
            color: rgba(255,255,255,0.62);
            font-weight: 600;
            font-size: 0.74rem;
        }
        .sticky-cta .btn {
            padding: 10px 18px !important;
            font-size: 0.9rem !important;
            border-radius: 999px !important;
        }
        .sticky-cta-close {
            background: rgba(255,255,255,0.08);
            border: none;
            color: rgba(255,255,255,0.62);
            width: 28px; height: 28px;
            border-radius: 999px;
            cursor: pointer;
            font-size: 1rem;
            margin-left: 4px;
        }
        .sticky-cta-close:hover { background: rgba(255,255,255,0.18); color: #fff; }

        /* ===== Support widget ===== */
        .support-widget {
            position: fixed;
            right: 22px;
            bottom: 22px;
            z-index: 2600;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
            pointer-events: none;
        }
        .support-widget > * {
            pointer-events: auto;
        }
        .support-launcher {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            height: 52px;
            padding: 0 20px 0 16px;
            border: none;
            border-radius: 999px;
            background: linear-gradient(180deg, #3182F6 0%, #1B64DA 100%);
            color: #fff;
            box-shadow:
                0 14px 32px rgba(27,100,218,0.36),
                inset 0 1px 0 rgba(255,255,255,0.22);
            cursor: pointer;
            font-family: inherit;
            transition: transform 0.18s ease, box-shadow 0.18s ease;
        }
        .support-launcher:hover {
            transform: translateY(-2px);
            box-shadow:
                0 18px 40px rgba(27,100,218,0.48),
                inset 0 1px 0 rgba(255,255,255,0.26);
        }
        .support-launcher:focus-visible {
            outline: 3px solid rgba(165,214,255,0.85);
            outline-offset: 3px;
        }
        .support-launcher-icon {
            width: 22px;
            height: 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .support-launcher-icon svg {
            width: 100%;
            height: 100%;
        }
        .support-launcher-label {
            font-size: 0.96rem;
            font-weight: 800;
            letter-spacing: -0.01em;
        }
        /* "AI" 배지 — AI 1차 응답임을 솔직하게 사전 고지 (사람 상담원 오인 방지) */
        .support-launcher-badge {
            position: absolute;
            top: -6px;
            right: -6px;
            min-width: 24px;
            height: 18px;
            padding: 0 6px;
            border-radius: 999px;
            background: #0F1A2E;
            color: #FFE7A8;
            font-size: 0.62rem;
            font-weight: 900;
            letter-spacing: 0.04em;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #fff;
            box-shadow: 0 4px 10px rgba(15,26,46,0.32);
        }
        .support-panel {
            width: min(390px, calc(100vw - 28px));
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 14px;
            box-shadow: 0 20px 60px rgba(13,18,30,0.22);
            overflow: hidden;
        }
        .support-panel[hidden] {
            display: none;
        }
        .support-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px;
            padding: 16px 18px;
            background: var(--text-strong);
            color: #fff;
        }
        .support-head span {
            display: block;
            color: rgba(255,255,255,0.62);
            font-size: 0.76rem;
            font-weight: 800;
            margin-bottom: 2px;
        }
        .support-head strong {
            display: block;
            font-size: 1rem;
            line-height: 1.35;
        }
        .support-close {
            width: 30px;
            height: 30px;
            border: none;
            border-radius: 999px;
            background: rgba(255,255,255,0.1);
            color: #fff;
            cursor: pointer;
            font-size: 1.25rem;
            line-height: 1;
        }
        .support-form,
        .support-login-box {
            padding: 16px 18px 18px;
        }
        .support-context {
            display: grid;
            gap: 2px;
            padding: 10px 12px;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: var(--bg-subtle);
            margin-bottom: 12px;
        }
        .support-context span,
        .support-message-label {
            color: var(--text-tertiary);
            font-size: 0.74rem;
            font-weight: 800;
        }
        .support-context strong {
            color: var(--text);
            font-size: 0.88rem;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .support-category-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px;
            margin-bottom: 12px;
        }
        .support-category-button {
            min-height: 38px;
            padding: 8px 10px;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: #fff;
            color: var(--text-secondary);
            font-family: inherit;
            font-size: 0.86rem;
            font-weight: 800;
            cursor: pointer;
            transition: var(--transition);
        }
        .support-category-button:hover {
            border-color: var(--primary);
            color: var(--primary-dark);
        }
        .support-category-button.is-active {
            border-color: rgba(49,130,246,0.45);
            background: var(--primary-soft);
            color: var(--primary-dark);
            box-shadow: inset 0 0 0 1px rgba(49,130,246,0.2);
        }
        .support-message-label {
            display: block;
            margin-bottom: 6px;
        }
        .support-form textarea {
            width: 100%;
            resize: vertical;
            min-height: 118px;
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text);
            font: inherit;
            outline: none;
        }
        .support-form textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(49,130,246,0.12);
        }
        .support-submit {
            width: 100%;
            justify-content: center;
            margin-top: 12px;
        }
        .support-result {
            margin-top: 12px;
            padding: 12px;
            border-radius: 8px;
            background: var(--primary-tint);
            border: 1px solid rgba(49,130,246,0.16);
            color: var(--text-secondary);
            font-size: 0.88rem;
        }
        .support-result strong {
            display: block;
            color: var(--primary-dark);
            margin-bottom: 4px;
        }
        .support-result small {
            display: block;
            margin-top: 8px;
            color: var(--text-tertiary);
            word-break: break-all;
        }
        .support-login-box {
            display: grid;
            gap: 10px;
        }
        .support-login-box strong {
            color: var(--text);
            font-size: 0.98rem;
        }
        .support-login-box p {
            color: var(--text-secondary);
            font-size: 0.88rem;
        }

        /* ===== Conversion strip — dropped (too noisy) ===== */
        .conversion-strip,
        .save-cta-box,
        .reward-band,
        .pain-strip,
        .trust-strip { display: none !important; }

        .legal-consent-card .save-cta-box {
            display: flex !important;
        }

        .legal-table-wrap {
            width: 100%;
            overflow-x: auto;
            margin: 14px 0 20px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: #fff;
        }
        .legal-table-caption {
            margin: 0;
            padding: 12px 14px;
            color: var(--text-secondary);
            font-size: 0.88rem;
            border-bottom: 1px solid var(--line);
        }
        .legal-table {
            width: 100%;
            min-width: 920px;
            border-collapse: collapse;
            font-size: 0.84rem;
            line-height: 1.5;
        }
        .legal-table th,
        .legal-table td {
            padding: 11px 12px;
            text-align: left;
            vertical-align: top;
            border-bottom: 1px solid var(--line);
        }
        .legal-table th {
            color: var(--text);
            background: var(--surface-muted);
            font-weight: 800;
            white-space: nowrap;
        }
        .legal-table td {
            color: var(--text-secondary);
        }
        .legal-table tbody tr:last-child td {
            border-bottom: 0;
        }

        /* Urgency tag — reserved for marketing moments only */
        .urgency-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            border-radius: 999px;
            background: #FFF1F2;
            color: #B6253A;
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0;
        }
        .urgency-tag::before {
            content: '';
            display: inline-block;
            width: 6px; height: 6px;
            border-radius: 999px;
            background: #F04452;
            box-shadow: 0 0 0 3px rgba(240,68,82,0.18);
            animation: pulseDot 1.6s infinite;
        }

        /* =============================================================
           CONVERSION MOMENT — Pricing featured card ONLY
           Blue trust holds the page; the decision card gets hot accent.
           ============================================================= */
        .plan-card.is-featured {
            position: relative;
            border: 2px solid #FF7A3D;
            background:
                radial-gradient(420px 220px at 50% -10%, rgba(255,122,61,0.10), transparent 70%),
                #fff;
            box-shadow:
                0 0 0 6px rgba(255,122,61,0.10),
                0 20px 44px rgba(255,122,61,0.20);
            transform: translateY(-8px);
        }
        .plan-card.is-featured:hover {
            box-shadow:
                0 0 0 6px rgba(255,122,61,0.14),
                0 24px 52px rgba(255,122,61,0.28);
        }
        .plan-card.is-featured .plan-ribbon {
            background: linear-gradient(180deg, #FF8A52, #F0571F);
            color: #fff;
            font-weight: 900;
            padding: 6px 12px;
            font-size: 0.74rem;
            letter-spacing: 0;
            box-shadow: 0 6px 16px rgba(240,87,31,0.36);
            top: -12px;
            right: 16px;
            border-radius: 999px;
        }
        .plan-card.is-featured .plan-head span {
            color: #F0571F;
            font-weight: 800;
        }
        .plan-card.is-featured .plan-head strong {
            color: var(--text-strong);
        }
        .plan-card.is-featured li::before {
            background: #F0571F;
        }

        /* Scarcity microcopy under the price */
        .plan-scarcity {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin: -4px 0 0;
            padding: 4px 10px;
            border-radius: 999px;
            background: #FFF1E8;
            color: #C04415;
            font-size: 0.76rem;
            font-weight: 700;
            border: 1px solid #FFD7BD;
            align-self: flex-start;
        }
        .plan-scarcity::before {
            content: '';
            width: 6px; height: 6px;
            border-radius: 999px;
            background: #F0571F;
            box-shadow: 0 0 0 3px rgba(240,87,31,0.18);
            animation: pulseDot 1.6s infinite;
        }
        /* Informational variant — neutral blue, used on non-featured plans
           to keep the orange chip exclusive to the featured/Pro card. */
        .plan-scarcity.is-info {
            background: #EEF4FF;
            color: #1B4FA8;
            border-color: #CFE0FF;
        }
        .plan-scarcity.is-info::before {
            background: #3182F6;
            box-shadow: 0 0 0 3px rgba(49,130,246,0.18);
            animation: none;
        }

        /* Audience hint — one-line "for whom" placed above description,
           accelerates the "is this for me?" decision step. */
        .plan-tagline {
            margin: 4px 0 -4px;
            font-size: 0.92rem;
            font-weight: 800;
            color: var(--text-strong);
            letter-spacing: -0.01em;
            line-height: 1.45;
        }
        .plan-card.is-featured .plan-tagline {
            color: #B83E0E;
        }
        .plan-description {
            color: var(--text-secondary);
            font-size: 0.92rem;
            line-height: 1.55;
            margin: 0;
        }
        .plan-sample-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 36px;
            padding: 0 12px;
            border: 1px solid rgba(49, 130, 246, 0.28);
            border-radius: 8px;
            color: #1B4FA8;
            background: #F7FAFF;
            font-size: 0.86rem;
            font-weight: 800;
            text-decoration: none;
        }
        .plan-sample-link:hover {
            border-color: rgba(49, 130, 246, 0.52);
            background: #EEF4FF;
        }
        .plan-meta-footer {
            margin: 12px 0 0;
            padding-top: 12px;
            border-top: 1px dashed var(--border);
            color: var(--text-tertiary);
            font-size: 0.78rem;
            line-height: 1.5;
            text-align: center;
        }
        .plan-price-meta {
            display: block;
            margin: 4px 0 14px;
            color: var(--text-tertiary);
            font-size: 0.82rem;
            line-height: 1.4;
            font-weight: 600;
        }

        /* Section subtitle under pricing h2 — communicates global guarantees once,
           so individual cards don't need to repeat refund language at the top. */
        .pricing-section .section-sub {
            margin-top: 10px;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.55;
        }

        /* The featured plan's CTA button — orange "money button" */
        .plan-card.is-featured .btn-hot,
        .plan-card.is-featured .btn-primary {
            background: linear-gradient(180deg, #FF8A52, #F0571F) !important;
            color: #fff !important;
            font-weight: 900 !important;
            box-shadow:
                0 10px 24px rgba(240,87,31,0.40),
                inset 0 1px 0 rgba(255,255,255,0.28) !important;
            border: 1px solid transparent !important;
        }
        .plan-card.is-featured .btn-hot:hover,
        .plan-card.is-featured .btn-primary:hover {
            background: linear-gradient(180deg, #FF9B66, #E14A12) !important;
            box-shadow:
                0 14px 30px rgba(240,87,31,0.50),
                inset 0 1px 0 rgba(255,255,255,0.36) !important;
        }

        /* ===== Site footer ===== */
        .site-footer {
            margin-top: 4rem;
            padding: 2rem 0;
            border-top: 1px solid var(--border-soft);
            color: var(--text-tertiary);
            background: transparent;
        }
        .site-footer-inner {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            align-items: flex-start;
        }
        .site-footer strong { color: var(--text); font-weight: 800; }
        .site-footer p { color: var(--text-tertiary); font-size: 0.86rem; margin-top: 4px; }
        .footer-business {
            display: flex;
            flex-wrap: wrap;
            gap: 4px 12px;
            max-width: 760px;
            margin-top: 12px;
            color: var(--text-tertiary);
            font-size: 0.76rem;
            line-height: 1.5;
        }
        .footer-business span {
            display: inline-flex;
            align-items: center;
        }
        .site-footer-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .site-footer-links button {
            background: transparent;
            border: none;
            color: var(--text-secondary);
            font-size: 0.86rem;
            font-weight: 600;
            cursor: pointer;
            padding: 0;
        }
        .site-footer-links button:hover { color: var(--primary); }

        /* ============================================================
           Closing block — FAQ + Final CTA tied together as one movement
           ============================================================ */
        .closing-block {
            display: grid;
            gap: 2.4rem;
            margin-bottom: 0 !important;
        }
        .closing-faq { margin-bottom: 0; }
        .closing-faq .section-head { margin-bottom: 1.4rem; }
        .closing-block .final-cta {
            margin-bottom: 0 !important;
        }
        .closing-block .faq-list { margin-bottom: 0; }

        /* ============================================================
           Trust band — compact horizontal strip under hero
           ============================================================ */
        .trust-band {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: var(--border-soft);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            margin-top: -3rem;
        }
        .trust-band-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 1.1rem 1.3rem;
            background: #fff;
        }
        .trust-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            flex-shrink: 0;
            border-radius: 10px;
            background: var(--primary-soft);
            font-size: 1.05rem;
        }
        .trust-band-item > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
        .trust-band-item strong {
            color: var(--text-strong);
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: -0.005em;
        }
        .trust-band-item span {
            color: var(--text-tertiary);
            font-size: 0.78rem;
            font-weight: 500;
        }

        /* ============================================================
           Product Showcase — Email + KakaoTalk alert mockups
           "이게 진짜 도착하는 모양입니다"
           ============================================================ */
        .showcase-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
            gap: 20px;
        }
        .showcase-mock {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 18px 44px rgba(13,18,30,0.08), 0 2px 8px rgba(13,18,30,0.04);
        }

        /* Email mockup (desktop window) */
        .mock-window-head {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 12px 16px;
            background: linear-gradient(180deg, #FAFBFC, #F2F4F6);
            border-bottom: 1px solid var(--border-soft);
        }
        .mock-dot {
            width: 12px;
            height: 12px;
            border-radius: 999px;
            display: inline-block;
        }
        .mock-dot--red { background: #FF5F57; }
        .mock-dot--yellow { background: #FEBC2E; }
        .mock-dot--green { background: #28C840; }
        .mock-window-title {
            margin-left: 14px;
            font-size: 0.82rem;
            color: var(--text-tertiary);
            font-weight: 700;
            letter-spacing: -0.005em;
        }
        .mock-email-row {
            display: flex;
            gap: 14px;
            padding: 18px 20px;
            border-bottom: 1px solid var(--border-soft);
        }
        .mock-email-row:last-child { border-bottom: none; }
        .mock-email-row--current {
            background: linear-gradient(90deg, var(--primary-tint), rgba(244,248,255,0));
            border-left: 3px solid var(--primary);
            padding-left: 17px;
        }
        .mock-avatar {
            width: 40px; height: 40px;
            border-radius: 999px;
            background: linear-gradient(135deg, #4593FA, #1B64DA);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 0.92rem;
            flex-shrink: 0;
            box-shadow: 0 4px 10px rgba(49,130,246,0.32);
        }
        .mock-avatar--muted {
            background: var(--bg-subtle);
            color: var(--text-tertiary);
            box-shadow: none;
        }
        .mock-email-content { flex: 1; min-width: 0; }
        .mock-email-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            margin-bottom: 4px;
        }
        .mock-email-meta strong {
            color: var(--text-strong);
            font-weight: 700;
            font-size: 0.86rem;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .mock-email-meta span { color: var(--text-tertiary); font-size: 0.76rem; font-weight: 600; }
        .mock-email-subject {
            color: var(--text-strong);
            font-weight: 800;
            font-size: 0.96rem;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }
        .mock-email-subject--muted { color: var(--text-tertiary); font-weight: 600; }
        .mock-email-snippet {
            display: grid;
            gap: 6px;
            margin-bottom: 10px;
        }
        .snip-row {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 10px;
            background: #fff;
            border: 1px solid var(--border);
            font-size: 0.86rem;
            color: var(--text);
        }
        .snip-row b {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            padding: 3px 8px;
            border-radius: 999px;
            font-weight: 900;
            font-size: 0.78rem;
        }
        .snip-row--good b { background: var(--primary); color: #fff; }
        .snip-row--mid b { background: var(--bg-subtle); color: var(--text-secondary); }
        .snip-row span {
            margin-left: auto;
            font-weight: 800;
            font-size: 0.74rem;
            padding: 3px 8px;
            border-radius: 999px;
        }
        .snip-row--good span { background: var(--primary-soft); color: var(--primary-dark); }
        .snip-row--mid span { background: #FFF6DD; color: #8E5A00; }
        .mock-email-cta {
            color: var(--primary);
            font-weight: 800;
            font-size: 0.88rem;
        }

        /* KakaoTalk mockup */
        .showcase-mock--kakao {
            background: #ABC1D1;
            border-color: transparent;
            display: flex;
            flex-direction: column;
        }
        .mock-kakao-head {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 16px;
            background: #FEE500;
            color: #181600;
        }
        .mock-kakao-back {
            font-size: 1.4rem;
            line-height: 1;
            font-weight: 600;
            color: #181600;
        }
        .mock-kakao-title-wrap { display: flex; flex-direction: column; gap: 0; }
        .mock-kakao-title-wrap strong {
            font-weight: 800;
            color: #181600;
            font-size: 0.95rem;
            letter-spacing: -0.01em;
        }
        .mock-kakao-title-wrap span {
            color: rgba(24,22,0,0.62);
            font-size: 0.72rem;
            font-weight: 600;
        }
        .mock-kakao-body {
            padding: 18px 14px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .mock-kakao-date {
            align-self: center;
            padding: 3px 10px;
            border-radius: 999px;
            background: rgba(0,0,0,0.15);
            color: rgba(255,255,255,0.92);
            font-size: 0.7rem;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .mock-kakao-row {
            display: flex;
            align-items: flex-end;
            gap: 6px;
        }
        .mock-kakao-msg {
            background: #fff;
            color: var(--text);
            padding: 10px 13px;
            border-radius: 4px 16px 16px 16px;
            font-size: 0.88rem;
            line-height: 1.55;
            max-width: 82%;
            box-shadow: 0 1px 2px rgba(0,0,0,0.06);
        }
        .mock-kakao-msg strong { color: var(--text-strong); font-weight: 800; }
        .mock-kakao-msg--card {
            padding: 12px;
            max-width: 86%;
        }
        .kakao-card-head {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 999px;
            background: var(--primary-soft);
            color: var(--primary-dark);
            font-size: 0.72rem;
            font-weight: 800;
            margin-bottom: 8px;
        }
        .kakao-card-title {
            font-weight: 900;
            color: var(--text-strong);
            font-size: 0.94rem;
            margin-bottom: 4px;
            letter-spacing: -0.01em;
            line-height: 1.4;
        }
        .kakao-card-meta {
            color: var(--text-tertiary);
            font-size: 0.78rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        .kakao-card-divider {
            height: 1px;
            background: var(--border-soft);
            margin: 0 0 10px;
        }
        .kakao-card-btn {
            color: var(--primary);
            font-weight: 800;
            font-size: 0.86rem;
        }
        .mock-kakao-msg--urgent {
            background: #FFF1F2;
            color: #B6253A;
            border-radius: 4px 16px 16px 16px;
        }
        .mock-kakao-msg--urgent strong { color: #B6253A; }
        .mock-kakao-time {
            color: rgba(0,0,0,0.45);
            font-size: 0.7rem;
            font-weight: 600;
            margin-bottom: 4px;
            white-space: nowrap;
        }

        /* Count-up animation hook — stable layout */
        .stat-number {
            font-variant-numeric: tabular-nums;
            min-height: 1em;
        }

        /* ===========================================================
           Responsive — desktop / medium / tablet / mobile
           Breakpoints: 1080 / 768 / 480
           =========================================================== */

        /* ----- Medium desktop (≤ 1080px) ----- */
        @media (max-width: 1080px) {
            .main-container { padding: 2rem 1.25rem 3rem; }
            .conversion-hero {
                padding: 3rem 2rem;
                gap: 28px;
            }
            .conversion-copy h1 { font-size: 3rem; letter-spacing: -0.035em; }
            .section-title { font-size: 1.7rem; }
            .stat-card .stat-number { font-size: 2.2rem; }
            .stat-card { padding: 0.4rem 1rem; }
            .conversion-hero,
            .stats-row,
            .hook-grid,
            .stake-grid,
            .compare-wrap,
            .workflow-band,
            .pricing-section,
            .faq-section,
            .roi-band,
            .final-cta,
            .card-grid,
            .story-block {
                margin-bottom: 4rem !important;
            }
        }

        /* ----- New components inside Medium / Tablet / Mobile ----- */

        @media (max-width: 1080px) {
            .trust-band { grid-template-columns: repeat(2, 1fr); }
            .showcase-grid { grid-template-columns: 1fr; gap: 18px; }
        }

        /* ----- Tablet (≤ 920px) — hero stacks, grids halve ----- */
        @media (max-width: 920px) {
            .conversion-hero {
                grid-template-columns: 1fr;
                padding: 2.4rem 1.6rem;
                gap: 24px;
            }
            .conversion-copy h1 { font-size: 2.6rem; line-height: 1.1; letter-spacing: -0.035em; }
            .conversion-copy .subtitle { font-size: 1.05rem; }
            .conversion-copy .subtitle br { display: none; }
            .stats-row {
                grid-template-columns: 1fr 1fr;
                gap: 1.4rem 0;
            }
            .stat-card {
                border-right: none;
                border-bottom: 1px solid var(--border-soft);
                padding: 1rem;
            }
            .stat-card:nth-last-child(-n+2) { border-bottom: none; }
            .hook-grid,
            .workflow-band,
            .pricing-grid {
                grid-template-columns: 1fr 1fr;
            }
            .stake-grid { grid-template-columns: 1fr; }
            .pricing-grid .plan-card.is-featured {
                /* keep visual priority even when wrapping */
                grid-column: 1 / -1;
                transform: none;
            }
            .roi-band { grid-template-columns: 1fr; padding: 2rem; }
            .final-cta { padding: 3rem 1.8rem; }
            .final-cta h2 { font-size: 2rem; }
            .compare-wrap { overflow-x: auto; }
            .compare-table { min-width: 580px; font-size: 0.9rem; }
            .compare-table th, .compare-table td { padding: 14px 16px; }
            .site-footer-inner { flex-direction: column; }
            .trust-band { margin-top: -2rem; }
            .conversion-hero,
            .stats-row,
            .hook-grid,
            .stake-grid,
            .compare-wrap,
            .workflow-band,
            .pricing-section,
            .faq-section,
            .roi-band,
            .final-cta,
            .card-grid,
            .story-block {
                margin-bottom: 3.2rem !important;
            }
        }

        /* ----- Small tablet / large mobile (≤ 768px) ----- */
        @media (max-width: 768px) {
            .main-container { padding: 1.5rem 1rem 2.5rem; }
            .navbar { padding: 0 1rem; }
            .navbar-inner {
                flex-wrap: wrap;
                min-height: 56px;
                height: auto;
                padding: 8px 0;
                gap: 8px;
                justify-content: space-between;
            }
            .logo { font-size: 1.05rem; }
            .logo-icon { width: 36px; height: 36px; font-size: 1.05rem; border-radius: 10px; }
            .logo-image { height: 34px; max-width: 74px; }
            .logo { font-size: 1.15rem; gap: 10px; }
            .logo-wordmark b { font-size: 1.15rem; }
            .logo-wordmark { transform: translateY(-2px); }
            /* Mobile: hide ", AI 공고지기" descriptor, keep only 콕(Kok) */
            .logo-wordmark small { display: none; }
            .navbar-inner { height: auto; min-height: 60px; }
            .nav-links {
                order: 3;
                flex-basis: 100%;
                gap: 2px;
                overflow-x: auto;
                padding-bottom: 4px;
                scrollbar-width: none;
                position: relative;
                z-index: 2;
            }
            .nav-links::-webkit-scrollbar { display: none; }
            .nav-links a, .nav-btn { padding: 6px 10px; font-size: 0.82rem; }
            .auth-status { min-width: 0; }
            .auth-email { max-width: 110px; font-size: 0.78rem; }

            .trust-band { grid-template-columns: 1fr; margin-top: -1.5rem; }
            .trust-band-item { padding: 0.9rem 1rem; }

            .conversion-hero { padding: 2rem 1.4rem; border-radius: 18px; }
            .conversion-copy h1 { font-size: 2.2rem; letter-spacing: -0.035em; }
            .conversion-copy .subtitle { font-size: 1rem; line-height: 1.6; }
            .hero-microline { font-size: 0.8rem; margin-top: 1.2rem; }
            .hero-proof { gap: 6px 14px; margin-top: 1.6rem; padding-top: 1.6rem; }
            .hero-proof span { font-size: 0.8rem; }
            .btn-lg { padding: 14px 22px !important; font-size: 1rem !important; }
            .hero-actions { width: 100%; }
            .hero-actions .btn { flex: 1 1 auto; justify-content: center; }

            .stat-card .stat-number { font-size: 1.9rem; }
            .hook-grid,
            .pricing-grid,
            .workflow-band { grid-template-columns: 1fr; }
            .plan-card.is-featured { transform: none; }
            .plan-ribbon { top: -10px; right: 12px; }

            .section-title { font-size: 1.4rem; }
            .stake-card { padding: 1.6rem; }
            .stake-card h3 { font-size: 1.1rem; }
            .stake-card li { font-size: 0.9rem; }
            .roi-band h2 { font-size: 1.4rem; }
            .roi-band { padding: 1.6rem; }
            .roi-band .roi-metrics { gap: 8px; }
            .roi-metrics strong { font-size: 1.2rem; }
            .final-cta { padding: 2.4rem 1.4rem; border-radius: 20px; }
            .final-cta h2 { font-size: 1.6rem; }
            .final-cta p { font-size: 0.98rem; }
            .final-cta .hero-actions { flex-direction: column; }
            .final-cta .hero-actions .btn { width: 100%; }
            .final-cta-meta { font-size: 0.78rem; gap: 4px 16px; margin-top: 1.2rem; }

            .sticky-cta {
                left: 12px;
                right: 12px;
                bottom: 12px;
                transform: translateY(10px);
                padding: 10px 12px 10px 16px;
            }
            .sticky-cta.is-visible { transform: translateY(0); }
            .sticky-cta-text { font-size: 0.84rem; white-space: normal; }
            .sticky-cta-text small { font-size: 0.7rem; }
            .sticky-cta .btn { padding: 8px 14px !important; font-size: 0.84rem !important; }
            .support-widget {
                right: 12px;
                bottom: 12px;
            }
            .support-widget.is-open {
                left: 12px;
                align-items: stretch;
            }
            .support-panel {
                width: 100%;
                max-height: calc(100vh - 86px);
                overflow-y: auto;
            }
            .support-launcher {
                height: 46px;
            }

            .application-progress-row {
                grid-template-columns: 1fr;
                align-items: stretch;
            }

            .outcome-learning-panel.is-empty,
            .outcome-learning-head {
                flex-direction: column;
                align-items: stretch;
            }

            .outcome-learning-score {
                text-align: left;
            }

            .outcome-learning-row {
                grid-template-columns: 1fr;
            }

            .checklist-summary-grid {
                grid-template-columns: 1fr 1fr;
            }

            .faq-item summary { padding: 14px 16px; font-size: 0.94rem; }
            .faq-item .faq-body { padding: 0 16px 16px; font-size: 0.9rem; }
            .conversion-hero,
            .stats-row,
            .hook-grid,
            .stake-grid,
            .compare-wrap,
            .workflow-band,
            .pricing-section,
            .faq-section,
            .roi-band,
            .final-cta,
            .card-grid,
            .story-block {
                margin-bottom: 2.4rem !important;
            }
        }

        /* ----- Mobile (≤ 480px) — tightest layout ----- */
        @media (max-width: 480px) {
            .main-container { padding: 1.2rem 0.75rem 2rem; }
            .conversion-hero { padding: 1.6rem 1.2rem; border-radius: 16px; }
            .conversion-copy h1 { font-size: 1.8rem; line-height: 1.12; letter-spacing: -0.03em; }
            .conversion-copy .subtitle { font-size: 0.96rem; }
            .hero-actions { flex-direction: column; align-items: stretch; }
            .hero-actions .btn { width: 100%; justify-content: center; }
            .closing-block { gap: 1.4rem; }
            .eyebrow { font-size: 0.72rem; padding: 5px 10px; }

            .stats-row { grid-template-columns: 1fr 1fr; }
            .stat-card .stat-number { font-size: 1.7rem; }
            .stat-card .stat-label { font-size: 0.78rem; }

            .stake-card { padding: 1.4rem; border-radius: 14px; }
            .stake-card h3 { font-size: 1.05rem; }
            .stake-card ul { gap: 8px; }
            .stake-card li { font-size: 0.88rem; padding-left: 22px; }

            .workflow-band > div { padding: 1.2rem; }
            .workflow-step { width: 30px; height: 30px; font-size: 0.84rem; }
            .workflow-band strong { font-size: 1rem; }

            .plan-card { padding: 1.6rem 1.4rem; border-radius: 14px; }
            .plan-head strong { font-size: 1.7rem; }
            .plan-card li { font-size: 0.88rem; }
            .plan-scarcity { font-size: 0.72rem; padding: 4px 9px; }

            .compare-table { min-width: 480px; font-size: 0.84rem; }
            .compare-table th, .compare-table td { padding: 12px 12px; }

            .roi-band { padding: 1.4rem; border-radius: 14px; }
            .roi-band h2 { font-size: 1.25rem; }
            .roi-metrics strong { font-size: 1.1rem; }

            .final-cta { padding: 2rem 1.2rem; }
            .final-cta h2 { font-size: 1.4rem; letter-spacing: -0.02em; }
            .final-cta p { font-size: 0.92rem; }
            .final-cta-meta { flex-direction: column; gap: 4px; font-size: 0.76rem; align-items: center; }

            .section-title { font-size: 1.25rem; }
            .section-head .muted { font-size: 0.9rem; }

            .sticky-cta {
                padding: 8px 10px 8px 14px;
                gap: 10px;
            }
            .sticky-cta-text { font-size: 0.8rem; }
            .sticky-cta-text small { display: none; }
            .sticky-cta-close { width: 24px; height: 24px; }
            .support-category-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
            .support-form,
            .support-login-box { padding: 14px; }

            .form-group input,
            .form-group select,
            .form-group textarea,
            .search-bar input,
            .search-bar select { padding: 11px 12px; font-size: 0.92rem; }

            .billing-consent-overlay { padding: 14px; }
            .billing-consent-body { padding: 22px 18px 18px; }
            .billing-consent-body h2 { font-size: 1.35rem; margin-right: 40px; }
            .billing-consent-body .modal-actions {
                flex-direction: column-reverse;
                align-items: stretch;
            }
            .billing-consent-body .modal-actions .btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* ----- Touch-only tweaks ----- */
        @media (hover: none) {
            .btn:hover,
            .card:hover,
            .plan-card:hover,
            .stat-card:hover,
            .faq-item:hover { transform: none; }
        }
