/* ===================================
   N-Care 2.0 — CLEAN LIGHT PREMIUM
   Full Design System v2.1
   =================================== */

/* ===================================
   1. DESIGN TOKENS
   =================================== */
:root {
    /* Primary Palette — Cool Blue */
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --primary-glow: rgba(14, 165, 233, 0.35);

    /* Accent — Gold */
    --accent: #fbbf24;
    --accent-dark: #f59e0b;
    --accent-glow: rgba(251, 191, 36, 0.3);

    /* Secondary — Emerald */
    --secondary: #34d399;
    --secondary-dark: #10b981;
    --secondary-glow: rgba(52, 211, 153, 0.25);

    /* Status */
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Backgrounds — Light System */
    --bg-deep: #f8fafc;
    --bg-dark: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --bg-surface: #f8fafc;
    --bg-light: #f1f5f9;
    --bg-white: #ffffff;
    --bg-gray: #f1f5f9;

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(14, 165, 233, 0.12);
    --glass-blur: 20px;

    /* Text */
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-white: #0f172a;
    --text-accent: #0284c7;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.07);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 20px rgba(14,165,233,0.1);
    --shadow-glow-accent: 0 0 20px rgba(251,191,36,0.1);

    /* Borders */
    --border-subtle: rgba(148,163,184,0.2);
    --border-glow: rgba(14,165,233,0.2);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.16, 1, 0.3, 1);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ===================================
   2. RESET & BASE
   =================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}
body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; }
ul, ol { list-style: none; }

/* Selection */
::selection {
    background: var(--primary);
    color: var(--text-white);
}

/* ===================================
   3. NAVIGATION — Frosted Glass
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
}
.nav-logo i {
    color: var(--primary);
    font-size: 1.4rem;
}
.nav-menu {
    display: flex;
    gap: 0.15rem;
    list-style: none;
}
.nav-link {
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark);
    background: rgba(14, 165, 233, 0.08);
}
.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}
.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-size: 1.25rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* Mobile menu */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

/* ===================================
   4. PROGRESS BAR
   =================================== */
.progress-bar {
    position: fixed;
    top: 64px;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    z-index: 999;
    transition: width 100ms linear;
    box-shadow: 0 0 10px var(--primary-glow);
}

/* ===================================
   5. LAYOUT SYSTEM
   =================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Alternating backgrounds */
.section:nth-child(odd) { background: var(--bg-deep); }
.section:nth-child(even) { background: var(--bg-dark); }
.section.bg-light { background: var(--bg-dark); }

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}
.section-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}
.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.subsection-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}
.subsection-title i {
    color: var(--primary);
}

/* ===================================
   6. GLASS CARD SYSTEM
   =================================== */
.card, .card-primary, .card-secondary, .card-accent {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}
.card:hover, .card-primary:hover, .card-secondary:hover, .card-accent:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}
.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 4px 15px var(--primary-glow);
}
.card-secondary .card-icon { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); box-shadow: 0 4px 15px var(--secondary-glow); }
.card-accent .card-icon { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); box-shadow: 0 4px 15px var(--accent-glow); }
.card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.75rem; }
.card p, .card-primary p, .card-secondary p, .card-accent p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }
.card ul { margin-top: 0.75rem; }
.card ul li, .card-primary ul li, .card-secondary ul li { color: var(--text-secondary); font-size: 0.85rem; padding: 0.35rem 0; padding-left: 1.2rem; position: relative; }
.card ul li::before, .card-primary ul li::before, .card-secondary ul li::before { content: '▸'; position: absolute; left: 0; color: var(--primary); }

/* Content grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

/* ===================================
   7. COVER SECTION — Cinematic Dark
   =================================== */
.cover-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 50%, #f8fafc 100%) !important;
    position: relative;
    padding-top: 64px;
}
.cover-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(52, 211, 153, 0.05) 0%, transparent 40%);
    z-index: 0;
}
/* Animated grid pattern */
.cover-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
}
@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}
.cover-overlay { display: none; }
.cover-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}
.cover-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(14, 165, 233, 0.06);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}
.cover-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}
.cover-title .highlight {
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cover-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
}
.cover-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.meta-item i { color: var(--primary); }
.cover-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px var(--primary-glow);
}
.cover-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
    color: white;
}
.cover-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    margin-top: 3rem;
}
.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    min-width: 180px;
    text-align: center;
    transition: all var(--transition-base);
}
.stat-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}
.stat-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ===================================
   8. STRATEGY SECTION
   =================================== */
.strategy-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}
.strategy-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}
.strategy-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}
.strategy-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(14, 165, 233, 0.15);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.strategy-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}
.strategy-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Benchmark grid */
.benchmark-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 1;
}
.benchmark-card, .benchmark-result {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition-base);
}
.benchmark-card:hover, .benchmark-result:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}
.benchmark-card h4, .benchmark-result h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.benchmark-card p, .benchmark-result p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Model grid */
.model-grid {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.model-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    flex: 1;
    min-width: 200px;
    text-align: center;
    transition: all var(--transition-base);
}
.model-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}
.model-card h4 { color: var(--text-white); font-size: 1rem; margin-bottom: 0.5rem; }
.model-card p { color: var(--text-secondary); font-size: 0.85rem; }
.model-icon { font-size: 2rem; color: var(--primary); margin-bottom: 0.75rem; }
.model-operator {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 900;
}

/* ===================================
   9. ECOSYSTEM — Orbital Pulse
   =================================== */
.ecosystem-visual { position: relative; z-index: 1; margin-bottom: 2rem; }
.eco-diagram {
    position: relative;
    min-height: 500px;
    margin: 2rem 0;
}
.eco-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
}
.eco-hub {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 60px var(--primary-glow), 0 0 120px rgba(14, 165, 233, 0.1);
    animation: hubPulse 3s ease-in-out infinite;
}
@keyframes hubPulse {
    0%, 100% { box-shadow: 0 0 60px var(--primary-glow), 0 0 120px rgba(14, 165, 233, 0.1); }
    50% { box-shadow: 0 0 80px var(--primary-glow), 0 0 160px rgba(14, 165, 233, 0.15); }
}
.eco-hub i { font-size: 2rem; margin-bottom: 0.5rem; }
.eco-hub span { font-size: 0.75rem; font-weight: 700; }
.eco-hub-label { margin-top: 0.5rem; font-size: 0.8rem; color: var(--text-secondary); }

.eco-nodes {
    position: relative;
    width: 100%;
    height: 500px;
}
.eco-node {
    position: absolute;
    width: 140px;
    text-align: center;
}
.eco-node:nth-child(1) { top: 5%; left: 50%; transform: translateX(-50%); }
.eco-node:nth-child(2) { top: 50%; right: 5%; transform: translateY(-50%); }
.eco-node:nth-child(3) { bottom: 5%; left: 50%; transform: translateX(-50%); }
.eco-node:nth-child(4) { top: 50%; left: 5%; transform: translateY(-50%); }
.eco-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    border: 2px solid var(--glass-border);
    transition: all var(--transition-base);
}
.eco-node:hover .eco-icon-box {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}
.eco-icon-box.medical { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.eco-icon-box.care { background: linear-gradient(135deg, #10b981, #047857); }
.eco-icon-box.nursing { background: linear-gradient(135deg, #f59e0b, #d97706); }
.eco-icon-box.welfare { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.eco-node h4 { color: var(--text-white); font-size: 0.85rem; font-weight: 700; }
.eco-node p { color: var(--text-muted); font-size: 0.75rem; }

/* Data sync cards */
.eco-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 1;
}
.eco-feature {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition-base);
}
.eco-feature:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}
.eco-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 15px var(--primary-glow);
}
.eco-feature h4 { color: var(--text-white); font-size: 0.95rem; margin-bottom: 0.3rem; }
.eco-feature p { color: var(--text-secondary); font-size: 0.8rem; }

/* ===================================
   10. COD PIPELINE — Conveyor Belt
   =================================== */
.pipeline-section { position: relative; z-index: 1; }
.pipeline-stages {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    margin: 2rem 0;
}
.pipeline-stage {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 0.75rem;
}
.stage-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 1rem;
    box-shadow: 0 0 20px var(--primary-glow);
    position: relative;
    z-index: 2;
}
.stage-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition-base);
}
.stage-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}
.stage-card h4 { color: var(--text-white); font-size: 0.95rem; margin-bottom: 0.5rem; }
.stage-card p { color: var(--text-secondary); font-size: 0.8rem; }
.stage-time {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.2rem 0.6rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary-dark);
}
.pipeline-arrow {
    color: var(--primary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    padding-top: 1rem;
}

/* Pipeline features */
.pipeline-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}
.pipeline-feature {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}
.pipeline-feature:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}
.pipeline-feature h3 { color: var(--text-white); font-size: 1.1rem; margin-bottom: 0.75rem; }
.pipeline-feature p { color: var(--text-secondary); font-size: 0.85rem; }

/* ===================================
   11. CARE MANAGER
   =================================== */
.role-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}
.role-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}
.role-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}
.role-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 0 25px var(--primary-glow);
}
.role-card h3 { color: var(--text-white); font-size: 1.1rem; margin-bottom: 0.5rem; }
.role-card p { color: var(--text-secondary); font-size: 0.85rem; }

/* Dashboard */
.dashboard-preview,
.case-study {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.dashboard-preview h3, .case-study h3 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.dashboard-widget {
    background: rgba(241, 245, 249, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: all var(--transition-base);
}
.dashboard-widget:hover {
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.05);
}
.widget-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.dashboard-widget h4 { color: var(--text-white); font-size: 0.9rem; margin-bottom: 0.3rem; }
.dashboard-widget p { color: var(--text-muted); font-size: 0.75rem; }

/* Function grid */
.function-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 1;
}
.function-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition-base);
}
.function-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}
.function-card h4 { color: var(--text-white); font-size: 0.95rem; margin-bottom: 0.5rem; }
.function-card p { color: var(--text-secondary); font-size: 0.8rem; }

/* Supporters */
.supporters-section {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    z-index: 1;
}
.supporters-section h3 { color: var(--text-white); margin-bottom: 1rem; }
.supporter-roles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.supporter-role {
    background: rgba(241, 245, 249, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
}
.supporter-role h4 { color: var(--text-white); font-size: 0.9rem; margin-bottom: 0.3rem; }
.supporter-role p { color: var(--text-muted); font-size: 0.75rem; }
.supporter-icon { font-size: 1.5rem; color: var(--primary); margin-bottom: 0.5rem; }

/* Case study */
.case-timeline { position: relative; padding-left: 2rem; }
.case-step {
    position: relative;
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--border-subtle);
}
.case-step::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    position: absolute;
    left: -7px;
    top: 4px;
    box-shadow: 0 0 10px var(--primary-glow);
}
.case-step h4 { color: var(--text-white); font-size: 0.9rem; margin-bottom: 0.25rem; }
.case-step p { color: var(--text-secondary); font-size: 0.8rem; }

/* ===================================
   12. MONITORING — Alert System
   =================================== */
.monitoring-visual { position: relative; z-index: 1; }
.alert-system {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    z-index: 1;
}
.alert-system h3 { color: var(--text-white); margin-bottom: 1.5rem; }
.alert-levels {
    display: grid;
    gap: 1rem;
}
.alert-level {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
}
.alert-level:hover {
    transform: translateX(4px);
}
.alert-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}
.alert-level.level-1 .alert-icon { background: var(--success); }
.alert-level.level-2 .alert-icon { background: var(--warning); }
.alert-level.level-3 .alert-icon { background: var(--danger); }
.alert-level h4 { color: var(--text-white); font-size: 0.9rem; }
.alert-level p { color: var(--text-secondary); font-size: 0.8rem; }
.alert-response {
    font-size: 0.75rem;
    color: var(--primary-dark);
    font-weight: 600;
    display: block;
    margin-top: 0.25rem;
}

/* Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}
.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition-base);
}
.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}
.feature-card h4 { color: var(--text-white); font-size: 0.95rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.8rem; }
.feature-icon { font-size: 1.5rem; color: var(--primary); margin-bottom: 0.75rem; }

/* ===================================
   13. SERVICE DELIVERY SYSTEM (Section 08)
   =================================== */

/* Process Timeline */
.service-process-flow {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}
.process-pipeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    position: relative;
}
/* Animated connecting line behind cards */
.process-pipeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    transform: translateY(-50%);
    z-index: 0;
    border-radius: 2px;
    opacity: 0.3;
}
.process-step-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    position: relative;
    z-index: 1;
    transition: all var(--transition-base);
}
.process-step-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}
.step-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    position: relative;
}
.step-icon-circle::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: orbitSpin 4s linear infinite;
}
@keyframes orbitSpin {
    0% { border-top-color: var(--primary); transform: rotate(0deg); }
    100% { border-top-color: var(--primary); transform: rotate(360deg); }
}
.step-blue { background: linear-gradient(135deg, #0ea5e9, #0284c7); box-shadow: 0 4px 20px rgba(14,165,233,0.4); }
.step-green { background: linear-gradient(135deg, #34d399, #059669); box-shadow: 0 4px 20px rgba(52,211,153,0.4); }
.step-orange { background: linear-gradient(135deg, #fbbf24, #d97706); box-shadow: 0 4px 20px rgba(251,191,36,0.4); }
.step-purple { background: linear-gradient(135deg, #a78bfa, #7c3aed); box-shadow: 0 4px 20px rgba(167,139,250,0.4); }
.process-step-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}
.process-step-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.step-badge {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-dark);
}
.process-arrow {
    font-size: 1.3rem;
    color: var(--primary);
    z-index: 1;
    animation: arrowPulse 2s ease-in-out infinite;
}
@keyframes arrowPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Architecture Diagram */
.service-architecture-diagram {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}
.diagram-wrapper { position: relative; padding: 2rem 0; }

/* Control Tower */
.diagram-control-tower {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 50px var(--primary-glow);
    color: white;
    position: relative;
    overflow: hidden;
}
.diagram-control-tower::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
    animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.tower-icon { font-size: 2.5rem; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.diagram-control-tower h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.3rem; position: relative; z-index: 1; }
.diagram-control-tower p { font-size: 0.85rem; opacity: 0.9; margin-bottom: 1rem; position: relative; z-index: 1; }
.tower-functions {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.tower-functions span {
    padding: 0.3rem 0.75rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Connectors with pulse */
.diagram-connectors {
    display: flex;
    justify-content: center;
    gap: 8rem;
    height: 50px;
    position: relative;
}
.connector-line {
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 2px;
    position: relative;
}
.connector-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 9px;
    height: 9px;
    background: var(--primary);
    border-radius: 50%;
    animation: dataFlow 2s ease-in-out infinite;
}
@keyframes dataFlow {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0.3; }
}

/* Center user */
.diagram-center-user {
    text-align: center;
    margin: 1rem auto 2rem;
}
.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 0 30px var(--accent-glow);
}
.diagram-center-user h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-white); }
.diagram-center-user p { font-size: 0.85rem; color: var(--primary); font-weight: 600; }

/* 3 Pillars */
.service-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.pillar-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}
.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary);
}
.pillar-header {
    padding: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.pillar-medical .pillar-header { background: linear-gradient(135deg, #0ea5e9, #0369a1); }
.pillar-care .pillar-header { background: linear-gradient(135deg, #34d399, #047857); }
.pillar-welfare .pillar-header { background: linear-gradient(135deg, #fbbf24, #b45309); }
.pillar-icon { font-size: 1.5rem; }
.pillar-header h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.pillar-tag {
    margin-left: auto;
    padding: 0.2rem 0.6rem;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
}
.pillar-providers, .pillar-services { padding: 1.25rem 1.5rem; }
.pillar-providers h5, .pillar-services h5 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pillar-providers ul { list-style: none; }
.pillar-providers ul li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pillar-providers ul li i { color: var(--primary); font-size: 0.8rem; width: 16px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.service-tags span {
    padding: 0.3rem 0.65rem;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Features bar */
.system-features-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}
.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* ===================================
   14. PLATFORM CONCEPT (Section 09)
   =================================== */
.platform-architecture { position: relative; z-index: 1; }

/* Architecture layers with perspective */
.arch-diagram {
    display: flex;
    flex-direction: column;
    gap: 0;
    perspective: 1000px;
}
.arch-layer {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base);
}
.arch-layer:hover {
    transform: translateY(-3px);
}
.arch-layer + .arch-layer {
    margin-top: 4px;
}
.arch-layer-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.65rem 1.5rem;
    color: white;
}
.arch-layer-content { padding: 1.5rem; }

/* User layer */
.arch-user-layer { background: rgba(14, 165, 233, 0.05); border: 1px solid rgba(14, 165, 233, 0.15); }
.arch-user-layer .arch-layer-label { background: linear-gradient(90deg, var(--primary), var(--primary-dark)); }
.arch-user-layer .arch-layer-content { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.arch-node {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}
.arch-node:hover { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.arch-node i { color: var(--primary); }

/* AI service layer */
.arch-ai-layer { background: rgba(14, 165, 233, 0.03); border: 1px solid rgba(14, 165, 233, 0.1); }
.arch-ai-layer .arch-layer-label { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.arch-center-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.arch-ai-search { text-align: center; margin-bottom: 1.5rem; }
.arch-ai-search i { font-size: 2rem; color: var(--primary); margin-bottom: 0.5rem; display: block; }
.arch-ai-search h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text-white); }
.arch-ai-search p { font-size: 0.85rem; color: var(--text-muted); font-style: italic; }
.arch-menu-row { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.arch-menu-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.06);
    border: 1px solid rgba(14, 165, 233, 0.12);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}
.arch-menu-item:hover { border-color: var(--primary); color: var(--text-white); }
.arch-menu-item i { color: var(--primary); font-size: 0.75rem; }

/* Engine layer */
.arch-engine-layer { background: rgba(251, 191, 36, 0.03); border: 1px solid rgba(251, 191, 36, 0.1); }
.arch-engine-layer .arch-layer-label { background: linear-gradient(90deg, #f59e0b, #d97706); }
.arch-engine-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.engine-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    transition: all var(--transition-base);
}
.engine-card:hover { border-color: var(--accent); box-shadow: var(--shadow-glow-accent); }
.engine-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.2rem; color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
}
.engine-card h5 { font-size: 0.85rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.35rem; }
.engine-card p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }

/* Data layer */
.arch-data-layer { background: rgba(52, 211, 153, 0.03); border: 1px solid rgba(52, 211, 153, 0.1); }
.arch-data-layer .arch-layer-label { background: linear-gradient(90deg, #10b981, #047857); }
.data-sources-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.data-source-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: all var(--transition-base);
}
.data-source-card:hover { border-color: var(--secondary); box-shadow: 0 0 20px var(--secondary-glow); }
.data-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.75rem; font-size: 1rem; color: white;
}
.data-source-card h5 { font-size: 0.85rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.5rem; }
.data-source-card ul { list-style: none; }
.data-source-card ul li { font-size: 0.75rem; color: var(--text-muted); padding: 0.2rem 0; }
.data-source-card ul li::before { content: '▸'; color: var(--secondary); margin-right: 0.4rem; }

/* Infra flow */
.infra-flow-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}
.infra-node {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(241, 245, 249, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.infra-node.highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}
.infra-arrow { color: var(--primary); font-size: 1.2rem; animation: arrowPulse 2s ease-in-out infinite; }

/* ===================================
   15. PLATFORM FEATURES (Section 10)
   =================================== */
.features-showcase { margin-bottom: 4rem; position: relative; z-index: 1; }

/* Bento Grid */
.features-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.feature-card-v2 {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}
.feature-card-v2::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity var(--transition-base);
}
.feature-card-v2:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}
.feature-card-v2:hover::before { opacity: 1; }
.feature-num {
    position: absolute;
    top: 0.75rem; right: 1rem;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: rgba(14, 165, 233, 0.08);
    line-height: 1;
}
.feature-icon-v2 {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: white;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px var(--primary-glow);
}
.feature-card-v2 h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.5rem; }
.feature-card-v2 > p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.75rem; }
.feature-detail { display: flex; flex-direction: column; gap: 0.3rem; }
.feature-detail span { font-size: 0.75rem; color: var(--secondary); font-weight: 500; display: flex; align-items: center; gap: 0.4rem; }

/* AI Flow Diagram */
.ai-flow-section { margin-bottom: 4rem; position: relative; z-index: 1; }
.ai-flow-diagram {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}
.ai-flow-stage { flex: 1; padding: 2rem 1.5rem; }
.stage-label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    display: inline-block;
}
.ai-input-stage .stage-label { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.ai-process-stage .stage-label { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.ai-output-stage .stage-label { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); }
.ai-input-stage { background: rgba(14, 165, 233, 0.03); }
.ai-process-stage { background: rgba(251, 191, 36, 0.03); }
.ai-output-stage { background: rgba(52, 211, 153, 0.03); }
.stage-cards { display: flex; flex-direction: column; gap: 1rem; }
.ai-io-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: all var(--transition-base);
}
.ai-io-card:hover { border-color: var(--primary); }
.io-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: white;
    margin-bottom: 0.75rem;
}
.ai-input-stage .io-icon { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.ai-output-stage .io-icon { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); }
.ai-io-card h5 { font-size: 0.85rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.5rem; }
.chat-bubble {
    background: rgba(14, 165, 233, 0.06);
    border: 1px solid rgba(14, 165, 233, 0.12);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 4px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.chat-bubble.ai-response {
    background: rgba(52, 211, 153, 0.06);
    border-color: rgba(52, 211, 153, 0.12);
    border-radius: var(--radius-md) var(--radius-md) 4px var(--radius-md);
    color: var(--secondary);
    font-size: 0.75rem;
}

/* Voice Wave */
.voice-wave {
    display: flex;
    gap: 3px;
    align-items: center;
    height: 30px;
    margin-bottom: 0.5rem;
}
.voice-wave span {
    display: block;
    width: 4px;
    background: var(--primary);
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}
.voice-wave.playing span { background: var(--secondary); }
.voice-wave span:nth-child(1) { height: 40%; animation-delay: 0s; }
.voice-wave span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.voice-wave span:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.voice-wave span:nth-child(4) { height: 60%; animation-delay: 0.3s; }
.voice-wave span:nth-child(5) { height: 30%; animation-delay: 0.4s; }
@keyframes wave {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}
.io-example p { font-size: 0.75rem; color: var(--text-muted); }

/* AI Flow Arrow */
.ai-flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    padding: 0 0.5rem;
    background: rgba(14, 165, 233, 0.03);
    animation: arrowPulse 2s ease-in-out infinite;
}

/* AI Process Box */
.ai-process-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.process-inner { display: flex; flex-direction: column; gap: 1.25rem; }
.process-item { text-align: center; }
.process-item i { font-size: 1.5rem; color: var(--accent); margin-bottom: 0.5rem; display: block; }
.process-item span { font-size: 0.9rem; font-weight: 700; color: var(--text-white); display: block; margin-bottom: 0.2rem; }
.process-item small { font-size: 0.75rem; color: var(--text-muted); }
.process-divider { height: 1px; background: var(--border-subtle); }

/* Differentiation */
.differentiation-section { position: relative; z-index: 1; }
.diff-cards-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.diff-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
}
.diff-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}
.diff-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 0 25px rgba(14, 165, 233, 0.3);
}
.diff-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.5rem; }
.diff-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ===================================
   16. TECH ARCHITECTURE
   =================================== */
.tech-stack { position: relative; z-index: 1; margin-bottom: 2rem; }
.tech-stack h3 { color: var(--text-white); font-size: 1.2rem; margin-bottom: 1.5rem; }
.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.tech-item {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition-base);
}
.tech-item:hover { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.tech-item h4 { color: var(--text-white); font-size: 0.95rem; margin-bottom: 0.5rem; }
.tech-item p { color: var(--text-secondary); font-size: 0.8rem; }
.tech-icon { font-size: 1.5rem; color: var(--primary); margin-bottom: 0.75rem; }

/* System architecture */
.system-architecture { position: relative; z-index: 1; margin-bottom: 2rem; }
.system-architecture h3 { color: var(--text-white); margin-bottom: 1.5rem; }
.architecture-layers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.arch-layer-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-base);
}
.arch-layer-item:hover {
    border-color: var(--primary);
    transform: translateX(4px);
}
.layer-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.arch-layer-item h4 { color: var(--text-white); font-size: 0.9rem; }
.arch-layer-item p { color: var(--text-muted); font-size: 0.75rem; }

/* Security & API */
.security-section, .api-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.security-section h3, .api-section h3 { color: var(--text-white); margin-bottom: 1rem; }
.security-grid, .api-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.security-item, .api-item {
    background: rgba(241, 245, 249, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: all var(--transition-base);
}
.security-item:hover, .api-item:hover { border-color: var(--primary); }
.security-item h4, .api-item h4 { color: var(--text-white); font-size: 0.9rem; margin-bottom: 0.3rem; }
.security-item p, .api-item p { color: var(--text-muted); font-size: 0.75rem; }

/* ===================================
   17. ROADMAP
   =================================== */
.roadmap-section { position: relative; z-index: 1; }
.phase-container { margin-bottom: 2rem; }
.phase-header {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.phase-badge {
    padding: 0.35rem 0.9rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
}
.phase-header h3 { color: var(--text-white); font-size: 1.1rem; }
.phase-header .phase-duration { color: var(--text-muted); font-size: 0.85rem; margin-left: auto; }
.phase-content {
    background: rgba(241, 245, 249, 0.6);
    border: 1px solid var(--glass-border);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.phase-item {
    background: var(--glass-bg);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: all var(--transition-base);
}
.phase-item:hover { border-color: var(--primary); }
.phase-item h4 { color: var(--text-white); font-size: 0.9rem; margin-bottom: 0.3rem; }
.phase-item p { color: var(--text-muted); font-size: 0.8rem; }

/* Team */
.team-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    z-index: 1;
}
.team-section h3 { color: var(--text-white); margin-bottom: 1.5rem; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}
.team-member {
    text-align: center;
    padding: 1.25rem;
    background: rgba(241, 245, 249, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}
.team-member:hover { border-color: var(--primary); }
.team-member-icon { font-size: 1.5rem; color: var(--primary); margin-bottom: 0.5rem; }
.team-member h4 { color: var(--text-white); font-size: 0.85rem; }
.team-member p { color: var(--text-muted); font-size: 0.75rem; }

/* ===================================
   18. BUDGET
   =================================== */
.budget-section { position: relative; z-index: 1; }
.budget-overview {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}
.budget-overview h3 { color: var(--text-white); margin-bottom: 1.5rem; }
.budget-total {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.budget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.budget-item {
    background: rgba(241, 245, 249, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}
.budget-item h4 { color: var(--text-white); font-size: 0.9rem; margin-bottom: 0.3rem; }
.budget-amount { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.budget-percentage { font-size: 0.8rem; color: var(--text-muted); }
.budget-bar {
    height: 4px;
    background: var(--border-subtle);
    border-radius: 2px;
    margin-top: 0.5rem;
    overflow: hidden;
}
.budget-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}
.budget-details {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.budget-details h3 { color: var(--text-white); margin-bottom: 1rem; }
.budget-details ul { list-style: none; }
.budget-details ul li {
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.budget-details ul li:last-child { border-bottom: none; }
.budget-details ul li strong { color: var(--text-white); }

/* ===================================
   19. CONCLUSION
   =================================== */
.outcomes-grid { position: relative; z-index: 1; margin-bottom: 3rem; }
.outcomes-grid h3 { color: var(--text-white); font-size: 1.2rem; margin-bottom: 1.5rem; }
.outcome-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}
.outcome-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}
.outcome-card:hover { border-color: var(--primary); box-shadow: var(--shadow-glow); transform: translateY(-4px); }
.outcome-icon { font-size: 2rem; color: var(--primary); margin-bottom: 0.75rem; }
.outcome-icon i { font-size: 2rem; }
.outcome-card h4 { color: var(--text-white); font-size: 1rem; margin-bottom: 0.75rem; }
.outcome-stat { margin-bottom: 0.5rem; }
.stat-before { color: var(--text-muted); font-size: 0.85rem; text-decoration: line-through; }
.stat-after { color: var(--secondary); font-size: 1.1rem; font-weight: 800; }
.stat-highlight { color: var(--accent); font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; }
.outcome-card > p { color: var(--text-muted); font-size: 0.8rem; }
.outcome-stat i { color: var(--primary); margin: 0 0.5rem; }

/* Qualitative */
.qualitative-outcomes { position: relative; z-index: 1; margin-bottom: 3rem; }
.qualitative-outcomes h3 { color: var(--text-white); font-size: 1.2rem; margin-bottom: 1.5rem; }
.qualitative-list { display: flex; flex-direction: column; gap: 1rem; }
.qualitative-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: all var(--transition-base);
}
.qualitative-item:hover { border-color: var(--primary); transform: translateX(4px); }
.qualitative-item > i { color: var(--secondary); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.qualitative-item h4 { color: var(--text-white); font-size: 0.95rem; margin-bottom: 0.25rem; }
.qualitative-item p { color: var(--text-muted); font-size: 0.8rem; }

/* Conclusion box */
.conclusion-box {
    background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(251,191,36,0.05));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}
.conclusion-content h3 { color: var(--text-white); margin-bottom: 1.5rem; }
.conclusion-text { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.conclusion-text strong { color: var(--text-white); }
.conclusion-quote {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(14, 165, 233, 0.06);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.conclusion-quote i { color: var(--primary); opacity: 0.3; }
.conclusion-quote p { color: var(--text-secondary); font-style: italic; font-size: 0.95rem; line-height: 1.8; }
.conclusion-quote strong { color: var(--accent); }

/* KPI */
.kpi-section { position: relative; z-index: 1; margin-bottom: 3rem; }
.kpi-section h3 { color: var(--text-white); margin-bottom: 1.5rem; }
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}
.kpi-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}
.kpi-card:hover { border-color: var(--accent); box-shadow: var(--shadow-glow-accent); }
.kpi-card h4 { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 0.5rem; }
.kpi-target {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.25rem;
}
.kpi-card > p { color: var(--text-muted); font-size: 0.75rem; }

/* Final CTA */
.final-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}
.final-cta h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}
.final-cta > p { color: var(--text-secondary); margin-bottom: 2rem; }
.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.contact-item i { color: var(--primary); }

/* ===================================
   20. FOOTER
   =================================== */
.footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border-subtle);
    padding: 2rem 0;
    text-align: center;
}
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
}
.footer-logo i { color: var(--primary); }
.footer p { color: var(--text-muted); font-size: 0.8rem; }

/* ===================================
   21. SCROLL TO TOP
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px var(--primary-glow);
    transition: all var(--transition-base);
}
.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--primary-glow);
}
.scroll-top.visible { display: flex; }

/* ===================================
   A. OVERVIEW — Law, Objectives, Risks
   =================================== */

/* Law box */
.law-box {
    margin-top: 1rem;
    padding: 1.5rem;
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: var(--radius-md);
}
.law-box h4 {
    font-family: var(--font-display);
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.law-box h4 i { color: var(--accent); }
.law-date {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1rem;
}
.law-items { display: flex; flex-direction: column; gap: 0.75rem; }
.law-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(241, 245, 249, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
}
.law-article {
    flex-shrink: 0;
    padding: 0.2rem 0.65rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: var(--radius-full);
}
.law-item p { font-size: 0.85rem; color: var(--text-secondary); }

/* Objective list */
.objective-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}
.objective-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(52, 211, 153, 0.04);
    border: 1px solid rgba(52, 211, 153, 0.12);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}
.objective-list li:hover {
    border-color: var(--secondary);
    background: rgba(52, 211, 153, 0.08);
    transform: translateX(4px);
}
.objective-list li > i {
    color: var(--secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.objective-list li strong {
    display: block;
    color: var(--text-white);
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}
.objective-list li p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* Risk section */
.risk-section {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}
.risk-section > h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.risk-section > h3 i { color: var(--warning); }
.risk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.risk-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}
.risk-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary);
}
.risk-header {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}
.risk-header i { font-size: 1.3rem; }
.risk-header h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; }
.risk-warning { background: linear-gradient(135deg, #f59e0b, #d97706); }
.risk-danger { background: linear-gradient(135deg, #ef4444, #dc2626); }
.risk-critical { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.risk-info { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.risk-desc {
    padding: 1.25rem 1.5rem 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.risk-solution {
    padding: 0.5rem 1.5rem 1.5rem;
    font-size: 0.8rem;
    color: var(--secondary);
}
.risk-solution strong { color: var(--secondary); }

/* ===================================
   B. STRATEGY — Cards, Model, Principle
   =================================== */
.strategy-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.strategy-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.strategy-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.strategy-features li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: rgba(14, 165, 233, 0.04);
    border-radius: var(--radius-sm);
}
.strategy-features li i { color: var(--primary); font-size: 0.65rem; }

/* Model reference */
.model-reference {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}
.model-reference > h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.model-reference > h3 i { color: var(--accent); }
.model-item {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    flex: 1;
    min-width: 160px;
    text-align: center;
    transition: all var(--transition-base);
}
.model-item:hover { border-color: var(--primary); transform: translateY(-3px); }
.model-item.model-result {
    border-color: var(--accent);
    background: rgba(251, 191, 36, 0.06);
}
.model-city {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.3rem;
}
.model-result .model-city { color: var(--accent); }
.model-item p { font-size: 0.8rem; color: var(--text-secondary); }

/* Core principle */
.core-principle {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}
.principle-box {
    background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(251,191,36,0.04));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
}
.principle-box > i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: block;
}
.principle-box h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}
.principle-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.principle-text strong { color: var(--accent); }
.principle-emphasis {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}
.text-highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* ===================================
   C. ECOSYSTEM — Diagram & Data Flow
   =================================== */
.ecosystem-diagram {
    position: relative;
    min-height: 480px;
    margin-bottom: 3rem;
    z-index: 1;
}
.eco-center-content {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin: 0 auto;
    box-shadow: 0 0 60px var(--primary-glow);
    animation: hubPulse 3s ease-in-out infinite;
    position: relative;
    z-index: 5;
}
.eco-center-content i { font-size: 2rem; margin-bottom: 0.4rem; }
.eco-center-content h3 { font-size: 0.75rem; font-weight: 700; line-height: 1.3; }
.eco-center-content p { font-size: 0.6rem; opacity: 0.8; }
.eco-center-badge {
    margin-top: 0.4rem;
    padding: 0.15rem 0.6rem;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 800;
}

.eco-node-content {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
}
.eco-node-content:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}
.eco-node-content > i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}
.eco-node-content h4 {
    font-family: var(--font-display);
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.eco-node-content ul {
    list-style: none;
}
.eco-node-content ul li {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.2rem 0;
}
.eco-connector { display: none; }

/* ===================================
   ECOSYSTEM V2 — Grid-based (no overlap)
   =================================== */
.ecosystem-diagram-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}
.eco-v2-top, .eco-v2-bottom {
    display: flex;
    justify-content: center;
}
.eco-v2-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
}
/* Hub center */
.eco-v2-hub {
    flex-shrink: 0;
}
.eco-v2-hub-inner {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    box-shadow: 0 0 60px var(--primary-glow), 0 0 120px rgba(14, 165, 233, 0.1);
    animation: hubPulse 3s ease-in-out infinite;
    position: relative;
    padding: 1rem;
}
.eco-v2-hub-inner i {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}
.eco-v2-hub-inner h3 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.15rem;
}
.eco-v2-hub-inner p {
    font-size: 0.55rem;
    opacity: 0.8;
    margin-bottom: 0.3rem;
}
.eco-v2-badge {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    background: rgba(255,255,255,0.2);
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
}

/* Node cards */
.eco-v2-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    text-align: center;
    min-width: 180px;
    max-width: 220px;
    transition: all var(--transition-base);
}
.eco-v2-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}
.eco-v2-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.2rem;
    color: #fff;
}
.eco-v2-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.eco-v2-green { background: linear-gradient(135deg, #10b981, #047857); }
.eco-v2-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.eco-v2-purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.eco-v2-card h4 {
    font-family: var(--font-display);
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.eco-v2-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.eco-v2-card ul li {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.2rem 0;
}

/* Connectors vertical */
.eco-v2-connector-v {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
    color: var(--primary);
}
.conn-line-v {
    width: 2px;
    height: 16px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
}
.eco-v2-connector-v i {
    font-size: 0.8rem;
    color: var(--primary);
    opacity: 0.6;
}

/* Connectors horizontal */
.eco-v2-connector-h {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0 0.75rem;
    color: var(--primary);
    flex-shrink: 0;
}
.conn-line-h {
    width: 20px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}
.eco-v2-connector-h i {
    font-size: 0.8rem;
    color: var(--primary);
    opacity: 0.6;
}

/* Ecosystem features */
.ecosystem-features {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}
.ecosystem-features > h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ecosystem-features > h3 i { color: var(--primary); }
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.feature-icon.bg-blue { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.feature-icon.bg-green { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); }
.feature-icon.bg-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.feature-icon.bg-orange { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.feature-tech {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}
.tech-badge {
    padding: 0.2rem 0.55rem;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Data flow */
.data-flow-section {
    position: relative;
    z-index: 1;
}
.data-flow-section > h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.data-flow-section > h3 i { color: var(--primary); }
.data-flow-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.flow-layer { width: 100%; max-width: 600px; }
.flow-box {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
}
.flow-box.flow-highlight {
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.06);
    box-shadow: var(--shadow-glow);
}
.flow-box h5 { color: var(--text-white); font-size: 0.95rem; margin-bottom: 0.3rem; }
.flow-box p { color: var(--text-muted); font-size: 0.8rem; }
.flow-items {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}
.flow-items span {
    padding: 0.25rem 0.6rem;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.12);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    color: var(--text-secondary);
}
.flow-arrow-down, .flow-arrow-both {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 0;
    color: var(--primary);
}
.flow-arrow-down i, .flow-arrow-both i {
    font-size: 1.2rem;
    animation: arrowPulse 2s ease-in-out infinite;
}
.flow-arrow-down span, .flow-arrow-both span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ===================================
   D. COD — Intro, Pipeline, Functions
   =================================== */
.cod-intro { margin-bottom: 3rem; position: relative; z-index: 1; }
.cod-intro-card {
    background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(251,191,36,0.04));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
}
.cod-intro-card > i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}
.cod-intro-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}
.cod-intro-card > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}
.cod-intro-card > p strong { color: var(--text-white); }
.cod-staff {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.staff-badge {
    padding: 0.5rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
}
.cod-staff > i { color: var(--accent); font-size: 1.2rem; }

/* Pipeline container */
.pipeline-container {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}
.pipeline-container > h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pipeline-container > h3 i { color: var(--primary); }
.stage-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.stage-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.stage-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 0.75rem;
}
.stage-features li {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 0.25rem 0.5rem;
    background: rgba(14, 165, 233, 0.04);
    border-radius: var(--radius-sm);
}
.pipeline-goal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(251,191,36,0.05));
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-full);
    font-size: 1rem;
    color: var(--text-white);
}
.pipeline-goal i { color: var(--accent); font-size: 1.3rem; }
.pipeline-goal strong { color: var(--accent); }

/* COD functions */
.cod-functions { position: relative; z-index: 1; }
.cod-functions > h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cod-functions > h3 i { color: var(--primary); }
.function-card > i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: block;
}

/* ===================================
   E. CARE MANAGER — Roles, Dashboard
   =================================== */
.care-manager-intro { margin-bottom: 3rem; position: relative; z-index: 1; }
.cm-intro-box {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
}
.cm-intro-box > i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: block;
}
.cm-intro-box h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 2rem;
}
.cm-roles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.cm-role {
    padding: 1.5rem;
    background: rgba(241, 245, 249, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}
.cm-role:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.cm-role-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 0 20px var(--primary-glow);
}
.cm-role h4 { color: var(--text-white); font-size: 0.95rem; margin-bottom: 0.3rem; }
.cm-role p { color: var(--text-muted); font-size: 0.8rem; }

/* ===================================
   F. TECH — Architecture Layers
   =================================== */
.tech-stack { position: relative; z-index: 1; margin-bottom: 2rem; }
.tech-stack h3,
.system-architecture h3 {
    font-family: var(--font-display);
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.tech-stack h3 i, .system-architecture h3 i { color: var(--primary); }

/* ===================================
   G. ROADMAP — Phase, Team
   =================================== */
.roadmap-section { position: relative; z-index: 1; }

/* ===================================
   V2 — CASE STUDY & SUPPORTERS
   =================================== */

/* ---- CASE STUDY V2 ---- */
.case-study-v2 {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}
.case-study-v2 > h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.case-study-v2 > h3 i { color: var(--info); }

.case-card-v2 {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.case-header-v2 {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(14, 165, 233, 0.03);
}
.case-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.3);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.case-header-v2 h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
}

/* 3-phase flow */
.case-flow-v2 {
    display: flex;
    align-items: stretch;
    padding: 2rem;
    gap: 0;
}
.case-phase {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.phase-icon-v2 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}
.phase-red { background: linear-gradient(135deg, #ef4444, #dc2626); box-shadow: 0 4px 15px rgba(239,68,68,0.3); }
.phase-blue { background: linear-gradient(135deg, #0ea5e9, #0284c7); box-shadow: 0 4px 15px rgba(14,165,233,0.3); }
.phase-green { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 4px 15px rgba(16,185,129,0.3); }

.phase-label-v2 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.phase-body-v2 {
    background: rgba(241, 245, 249, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    width: 100%;
    flex: 1;
}

/* Problem phase */
.phase-person {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.phase-person i {
    color: var(--text-light);
}
.case-phase-problem .phase-body-v2 p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}
.case-phase-problem .phase-body-v2 p strong {
    color: #ef4444;
}
.phase-alert-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    font-size: 0.65rem;
    font-weight: 600;
    color: #ef4444;
}

/* Action timeline */
.action-timeline {
    text-align: left;
}
.atl-step {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.atl-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
}
.atl-content {
    flex: 1;
}
.atl-org {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.15rem;
}
.atl-org i {
    color: var(--primary);
    font-size: 0.75rem;
}
.atl-content p {
    font-size: 0.7rem;
    color: var(--text-secondary);
}
.atl-connector {
    width: 2px;
    height: 12px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    margin: 0.3rem 0 0.3rem 13px;
}

/* Result phase */
.result-items {
    text-align: left;
    margin-bottom: 0.75rem;
}
.result-item-v2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    font-size: 0.8rem;
}
.result-item-v2 i {
    color: var(--secondary);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.result-item-v2 span {
    color: var(--text-secondary);
}
.result-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--secondary);
}

/* Flow arrows */
.case-flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    color: var(--primary);
    font-size: 1.4rem;
    opacity: 0.5;
    flex-shrink: 0;
    padding-top: 3rem;
}

/* ---- SUPPORTERS V2 ---- */
.supporter-program-v2 {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.supporter-program-v2 > h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.supporter-program-v2 > h3 i { color: #ec4899; }

.supporter-layout-v2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    align-items: start;
}

/* Intro card */
.supporter-intro-v2 {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(14, 165, 233, 0.05));
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
}
.sp-intro-icon {
    font-size: 2.5rem;
    color: #ec4899;
    margin-bottom: 1rem;
}
.supporter-intro-v2 h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}
.supporter-intro-v2 > p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.sp-intro-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}
.sp-stat {
    text-align: center;
}
.sp-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ec4899;
}
.sp-stat-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-top: 0.15rem;
}
.sp-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(236, 72, 153, 0.3);
}

/* Activity cards grid */
.supporter-cards-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.sp-card-v2 {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: all var(--transition-base);
}
.sp-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary);
}
.sp-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.75rem;
}
.sp-card-blue { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.sp-card-green { background: linear-gradient(135deg, #10b981, #059669); }
.sp-card-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.sp-card-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

.sp-card-v2 h5 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.3rem;
}
.sp-card-v2 > p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

/* Card sub-elements */
.sp-card-bar {
    height: 6px;
    background: rgba(100, 116, 139, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.3rem;
}
.sp-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #0ea5e9, #38bdf8);
    border-radius: 3px;
    transition: width 0.8s ease;
}
.sp-bar-label {
    font-size: 0.6rem;
    color: var(--text-secondary);
}
.sp-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--secondary);
}
.sp-vitals-mini {
    display: flex;
    gap: 0.5rem;
}
.sp-vitals-mini span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    font-size: 0.6rem;
    color: #f59e0b;
    font-weight: 600;
}
.sp-activity-tags {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}
.sp-activity-tags span {
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    font-size: 0.6rem;
    color: #8b5cf6;
    font-weight: 600;
}

/* ===================================
   V3 — CASE STUDY & SUPPORTERS REDESIGN
   실제 활용사례 풀 비주얼 타임라인 +
   통합돌봄 서포터즈 프로그램 시각화
   =================================== */

/* ---- CASE STUDY V3 ---- */
.case-study-v3 {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}
.case-study-v3 > h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.case-study-v3 > h3 i { color: var(--info); }
.case-study-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding-left: 2.05rem;
}

/* Profile Card */
.case-profile-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(14, 165, 233, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    gap: 2rem;
}
.case-profile-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
}
.profile-avatar {
    position: relative;
    flex-shrink: 0;
}
.profile-avatar > i {
    font-size: 3.5rem;
    color: rgba(239, 68, 68, 0.6);
}
.avatar-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ef4444;
    border: 3px solid var(--bg-dark);
    animation: pulseRed 2s infinite;
}
@keyframes pulseRed {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}
.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    font-size: 0.65rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 0.5rem;
}
.profile-info h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.35rem;
}
.profile-info p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.case-profile-right {
    display: flex;
    gap: 1.25rem;
    flex-shrink: 0;
}
.profile-stat {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(241, 245, 249, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
}
.ps-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}
.ps-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.ps-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.ps-blue { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.ps-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-white);
}
.ps-label {
    display: block;
    font-size: 0.6rem;
    color: var(--text-secondary);
}

/* Timeline V3 */
.case-timeline-v3 {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 2rem;
}
.ctl-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(14, 165, 233, 0.03);
}
.ctl-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.ctl-header h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.15rem;
}
.ctl-header p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Timeline Track */
.ctl-track {
    padding: 2rem;
}
.ctl-step {
    display: grid;
    grid-template-columns: 120px 40px 1fr;
    gap: 0;
    align-items: start;
    margin-bottom: 0;
}
.ctl-step:last-child {
    margin-bottom: 0;
}

/* Time column */
.ctl-time-col {
    text-align: right;
    padding-right: 1rem;
    padding-top: 0.5rem;
}
.ctl-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}
.ctl-time-badge i { font-size: 0.65rem; }
.ctl-time-sub {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* Node column (timeline spine) */
.ctl-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.ctl-node-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.75rem;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--bg-dark);
}
.ctl-dot-red { background: #ef4444; box-shadow: 0 0 0 4px var(--bg-dark), 0 0 12px rgba(239,68,68,0.4); }
.ctl-dot-blue { background: #0ea5e9; box-shadow: 0 0 0 4px var(--bg-dark), 0 0 12px rgba(14,165,233,0.4); }
.ctl-dot-green { background: #10b981; box-shadow: 0 0 0 4px var(--bg-dark), 0 0 12px rgba(16,185,129,0.4); }
.ctl-node-line {
    width: 2px;
    flex: 1;
    min-height: 20px;
    background: linear-gradient(to bottom, var(--primary), rgba(14,165,233,0.15));
    margin-top: 0.4rem;
}
.ctl-line-last { opacity: 0; }

/* Card column */
.ctl-card {
    background: rgba(241, 245, 249, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
    border-left: 3px solid transparent;
}
.ctl-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.ctl-card-red { border-left-color: #ef4444; }
.ctl-card-red:hover { border-color: rgba(239,68,68,0.3); border-left-color: #ef4444; }
.ctl-card-blue { border-left-color: #0ea5e9; }
.ctl-card-blue:hover { border-color: rgba(14,165,233,0.3); border-left-color: #0ea5e9; }
.ctl-card-green { border-left-color: #10b981; }
.ctl-card-green:hover { border-color: rgba(16,185,129,0.3); border-left-color: #10b981; }

.ctl-card-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
    flex-wrap: wrap;
}
.ctl-step-num {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}
.ctl-org-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
}
.ctl-org-medical { background: rgba(239,68,68,0.12); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.ctl-org-nursing { background: rgba(14,165,233,0.12); color: #38bdf8; border: 1px solid rgba(14,165,233,0.2); }
.ctl-org-admin { background: rgba(16,185,129,0.12); color: #34d399; border: 1px solid rgba(16,185,129,0.2); }
.ctl-card h5 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}
.ctl-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.ctl-action {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.65rem;
    border-radius: var(--radius-sm);
    background: rgba(100, 116, 139, 0.1);
    border: 1px solid rgba(100, 116, 139, 0.15);
    font-size: 0.7rem;
    color: var(--text-secondary);
}
.ctl-action i {
    font-size: 0.65rem;
    color: var(--text-muted);
}
.ctl-result-mini {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding-top: 0.5rem;
    border-top: 1px solid rgba(100, 116, 139, 0.1);
}
.ctl-result-mini i {
    color: var(--primary);
    margin-right: 0.3rem;
    font-size: 0.65rem;
}

/* Result Dashboard */
.case-result-dashboard {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.crd-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(16, 185, 129, 0.03);
}
.crd-header-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}
.crd-header h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    flex: 1;
}
.crd-badge-success {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--secondary);
}
.crd-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding: 1.5rem 2rem;
}
.crd-metric {
    text-align: center;
    padding: 1rem;
    background: rgba(241, 245, 249, 0.5);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}
.crd-metric-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1rem;
    color: #fff;
}
.crd-m-green { background: linear-gradient(135deg, #10b981, #059669); }
.crd-m-blue { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.crd-m-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.crd-m-gold { background: linear-gradient(135deg, #fbbf24, #d97706); }
.crd-metric-value {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}
.crd-metric-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}
.crd-metric-bar {
    height: 4px;
    background: rgba(100, 116, 139, 0.15);
    border-radius: 2px;
    overflow: hidden;
}
.crd-bar-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 1s ease;
}
.crd-bar-green { background: linear-gradient(90deg, #10b981, #34d399); }
.crd-bar-blue { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.crd-bar-purple { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.crd-bar-gold { background: linear-gradient(90deg, #fbbf24, #fcd34d); }

.crd-insight {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(251, 191, 36, 0.03);
}
.crd-insight > i {
    color: #fbbf24;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.crd-insight p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.crd-insight strong { color: var(--text-white); }
.crd-insight em { color: var(--primary); font-style: normal; font-weight: 600; }


/* ---- SUPPORTERS V3 ---- */
.supporter-program-v3 {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}
.supporter-program-v3 > h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.supporter-program-v3 > h3 i { color: #ec4899; }
.supporter-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding-left: 2.05rem;
}

/* Overview Banner */
.sp3-overview-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(14, 165, 233, 0.04));
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    gap: 2rem;
}
.sp3-overview-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
}
.sp3-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #db2777);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}
.sp3-overview-left h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.3rem;
}
.sp3-overview-left p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.sp3-overview-stats {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}
.sp3-stat-item {
    text-align: center;
}
.sp3-stat-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.4rem;
    border: 2px solid;
}
.sp3-sc-pink { border-color: rgba(236,72,153,0.4); background: rgba(236,72,153,0.1); }
.sp3-sc-blue { border-color: rgba(14,165,233,0.4); background: rgba(14,165,233,0.1); }
.sp3-sc-green { border-color: rgba(16,185,129,0.4); background: rgba(16,185,129,0.1); }
.sp3-stat-num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-white);
}
.sp3-stat-label {
    font-size: 0.6rem;
    color: var(--text-secondary);
}
.sp3-stat-divider-v {
    width: 1px;
    height: 36px;
    background: rgba(236, 72, 153, 0.2);
}

/* Weekly Schedule */
.sp3-weekly-schedule {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 2rem;
}
.sp3-schedule-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--glass-border);
}
.sp3-sch-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ec4899, #db2777);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.sp3-schedule-header h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    flex: 1;
}
.sp3-sch-badge {
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.2);
    font-size: 0.6rem;
    font-weight: 600;
    color: #ec4899;
}
.sp3-week-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    padding: 1.5rem;
}
.sp3-day {
    text-align: center;
    padding: 1rem 0.75rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}
.sp3-day:hover {
    transform: translateY(-4px);
}
.sp3-day-active {
    background: rgba(236, 72, 153, 0.05);
    border-color: rgba(236, 72, 153, 0.15);
}
.sp3-day-active:hover {
    background: rgba(236, 72, 153, 0.1);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.15);
}
.sp3-day-phone {
    background: rgba(14, 165, 233, 0.05);
    border-color: rgba(14, 165, 233, 0.15);
}
.sp3-day-phone:hover {
    background: rgba(14, 165, 233, 0.1);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.15);
}
.sp3-day-name {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}
.sp3-day-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.6rem;
    font-size: 1rem;
    color: #fff;
}
.sp3-di-visit { background: linear-gradient(135deg, #ec4899, #db2777); }
.sp3-di-health { background: linear-gradient(135deg, #f59e0b, #d97706); }
.sp3-di-phone { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.sp3-di-companion { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.sp3-di-report { background: linear-gradient(135deg, #10b981, #059669); }
.sp3-day-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.sp3-day-task {
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Role Diagram */
.sp3-role-diagram {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 2rem;
}
.sp3-role-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--glass-border);
}
.sp3-role-header i {
    color: var(--primary);
    font-size: 1rem;
}
.sp3-role-header h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
}
.sp3-role-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    padding: 2rem;
    align-items: center;
}
.sp3-role-group {
    background: rgba(241, 245, 249, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition-base);
}
.sp3-role-group:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.sp3-rg-supporter { border-top: 3px solid #ec4899; }
.sp3-rg-manager { border-top: 3px solid var(--primary); }
.sp3-rg-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--glass-border);
}
.sp3-rg-supporter .sp3-rg-title i { color: #ec4899; }
.sp3-rg-manager .sp3-rg-title i { color: var(--primary); }
.sp3-rg-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.sp3-rg-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(241, 245, 249, 0.6);
    border: 1px solid rgba(100, 116, 139, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}
.sp3-rg-card:hover {
    background: rgba(241, 245, 249, 0.9);
    border-color: var(--primary);
}
.sp3-rg-card > i {
    font-size: 1rem;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}
.sp3-rg-supporter .sp3-rg-card > i { color: #ec4899; }
.sp3-rg-manager .sp3-rg-card > i { color: var(--primary); }
.sp3-rg-card > span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-white);
    flex-shrink: 0;
}
.sp3-rg-card > small {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-left: auto;
}

/* Connector */
.sp3-role-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.5rem;
}
.sp3-rc-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #ec4899, var(--primary));
}
.sp3-rc-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(236,72,153,0.2), rgba(14,165,233,0.2));
    border: 1px solid rgba(14,165,233,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
}
.sp3-rc-labels {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}
.sp3-rc-up, .sp3-rc-down {
    font-size: 0.55rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.sp3-rc-up { color: #ec4899; }
.sp3-rc-down { color: var(--primary); }

/* Impact Section */
.sp3-impact-section {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.sp3-impact-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--glass-border);
}
.sp3-impact-header i {
    color: var(--accent);
    font-size: 1rem;
}
.sp3-impact-header h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
}
.sp3-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding: 1.5rem 2rem;
}
.sp3-impact-card {
    text-align: center;
    padding: 1.25rem 1rem;
    background: rgba(241, 245, 249, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}
.sp3-impact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.sp3-ic-pink:hover { border-color: rgba(236,72,153,0.4); }
.sp3-ic-blue:hover { border-color: rgba(14,165,233,0.4); }
.sp3-ic-green:hover { border-color: rgba(16,185,129,0.4); }
.sp3-ic-gold:hover { border-color: rgba(251,191,36,0.4); }
.sp3-ic-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1rem;
    color: #fff;
}
.sp3-ic-pink .sp3-ic-icon { background: linear-gradient(135deg, #ec4899, #db2777); }
.sp3-ic-blue .sp3-ic-icon { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.sp3-ic-green .sp3-ic-icon { background: linear-gradient(135deg, #10b981, #059669); }
.sp3-ic-gold .sp3-ic-icon { background: linear-gradient(135deg, #fbbf24, #d97706); }
.sp3-ic-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}
.sp3-ic-metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.sp3-ic-bar {
    flex: 1;
    height: 6px;
    background: rgba(100, 116, 139, 0.15);
    border-radius: 3px;
    overflow: hidden;
}
.sp3-ic-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease;
}
.sp3-ic-pink .sp3-ic-fill { background: linear-gradient(90deg, #ec4899, #f472b6); }
.sp3-ic-blue .sp3-ic-fill { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.sp3-ic-green .sp3-ic-fill { background: linear-gradient(90deg, #10b981, #34d399); }
.sp3-ic-gold .sp3-ic-fill { background: linear-gradient(90deg, #fbbf24, #fcd34d); }
.sp3-ic-metric span {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-white);
    flex-shrink: 0;
    min-width: 36px;
}
.sp3-ic-desc {
    font-size: 0.65rem;
    color: var(--text-muted);
}


/* ===================================
   V2 — VISUAL DIAGRAM OVERHAUL
   리스크, 벤치마킹, 대시보드, 모니터링, 
   정성적 효과, 예산근거, API 카드
   =================================== */

/* ---- RISK SECTION V2 ---- */
.risk-section-v2 { margin-top: 3rem; position: relative; z-index: 1; }
.risk-section-v2 > h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.risk-section-v2 > h3 i { color: var(--warning); }
.risk-visual-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.risk-visual-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
}
.risk-visual-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary);
}
.risk-top {
    padding: 1.5rem;
    text-align: center;
    flex: 1;
}
.risk-icon-circle {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem; color: #fff;
}
.risk-orange { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 4px 15px rgba(245,158,11,0.3); }
.risk-red { background: linear-gradient(135deg, #ef4444, #dc2626); box-shadow: 0 4px 15px rgba(239,68,68,0.3); }
.risk-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); box-shadow: 0 4px 15px rgba(139,92,246,0.3); }
.risk-blue { background: linear-gradient(135deg, #0ea5e9, #0284c7); box-shadow: 0 4px 15px rgba(14,165,233,0.3); }
.risk-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}
.risk-detail {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}
.risk-severity {
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    font-size: 0.75rem; color: var(--text-secondary);
}
.severity-dot {
    width: 8px; height: 8px; border-radius: 50%;
}
.sev-high { background: #f59e0b; }
.sev-critical { background: #ef4444; animation: pulse-dot 1.5s infinite; }
.sev-medium { background: #0ea5e9; }
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

/* Risk arrow connector */
.risk-arrow-connector {
    display: flex; align-items: center; gap: 0; padding: 0 1rem;
}
.arrow-line {
    flex: 1; height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}
.arrow-label {
    padding: 0.3rem 0.75rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 999px;
    font-size: 0.7rem;
    color: var(--secondary);
    font-weight: 600;
    white-space: nowrap;
    display: flex; align-items: center; gap: 0.3rem;
}
.arrow-label i { font-size: 0.65rem; }

/* Risk bottom (solution) */
.risk-bottom {
    padding: 1.25rem 1.5rem;
    text-align: center;
    background: rgba(16, 185, 129, 0.05);
    border-top: 1px solid rgba(16, 185, 129, 0.1);
}
.solution-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 0.9rem;
}
.solution-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}
.solution-tags {
    display: flex; gap: 0.4rem; justify-content: center; flex-wrap: wrap;
}
.solution-tags span {
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-size: 0.65rem;
    color: var(--secondary);
}

/* ---- BENCHMARK SECTION V2 ---- */
.model-reference-v2 {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}
.model-reference-v2 > h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    display: flex; align-items: center; gap: 0.75rem;
}
.model-reference-v2 > h3 i { color: var(--accent); }
.benchmark-flow { text-align: center; }
.benchmark-source-grid {
    display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
}
.benchmark-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    width: 180px;
    text-align: center;
    transition: all var(--transition-base);
}
.benchmark-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary);
}
.bench-icon {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.bench-city {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.4rem;
}
.bench-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}
.bench-tag {
    display: inline-block;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.3);
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 600;
}
.benchmark-plus {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}
.benchmark-merge-arrow {
    display: flex; align-items: center; gap: 0; padding: 1.25rem 2rem;
}
.merge-line {
    flex: 1; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.merge-label {
    padding: 0.4rem 1rem;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    display: flex; align-items: center; gap: 0.4rem;
}
.benchmark-result-card {
    position: relative;
    background: linear-gradient(135deg, rgba(14,165,233,0.15), rgba(251,191,36,0.1));
    border: 2px solid rgba(14,165,233,0.4);
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 480px;
    margin: 0 auto;
    overflow: hidden;
}
.result-glow {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(14,165,233,0.08), transparent 60%);
    pointer-events: none;
}
.result-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    position: relative;
}
.benchmark-result-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
}
.result-features {
    display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
    position: relative;
}
.result-features span {
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 600;
    display: flex; align-items: center; gap: 0.3rem;
}

/* ---- CORE PRINCIPLE V2 ---- */
.core-principle-v2 { margin-top: 3rem; position: relative; z-index: 1; }
.principle-visual {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
}
.principle-left {
    text-align: center;
    margin-bottom: 1.5rem;
}
.principle-icon-large {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.principle-left h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
}
.principle-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.principle-step {
    background: rgba(14,165,233,0.1);
    border: 1px solid rgba(14,165,233,0.2);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
    min-width: 160px;
    transition: all var(--transition-base);
}
.principle-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(14,165,233,0.2);
}
.principle-step-highlight {
    background: linear-gradient(135deg, rgba(14,165,233,0.2), rgba(251,191,36,0.1));
    border-color: var(--primary);
}
.pstep-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.principle-step p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}
.pstep-emphasis {
    font-family: var(--font-display);
    font-size: 1rem !important;
    font-weight: 700;
    color: var(--accent) !important;
}
.pstep-label {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: rgba(14,165,233,0.15);
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 600;
}
.principle-arrow {
    color: var(--primary);
    font-size: 1.5rem;
}
.principle-note {
    text-align: center;
    padding: 1rem;
    background: rgba(251,191,36,0.08);
    border: 1px solid rgba(251,191,36,0.2);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.principle-note i { color: var(--accent); margin-right: 0.4rem; }
.principle-note strong { color: var(--accent); }

/* ---- DASHBOARD PREVIEW V2 ---- */
.dashboard-preview-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.dash-widget-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}
.dash-widget-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary);
}
.dwc-header {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--glass-border);
}
.dwc-icon {
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: #fff;
}
.dwc-blue { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.dwc-green { background: linear-gradient(135deg, #10b981, #059669); }
.dwc-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.dwc-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.dwc-header h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-white);
    font-weight: 600;
}
.dwc-visual {
    padding: 1.25rem;
}
/* Mini stats */
.dwc-stat-row {
    display: flex; gap: 0.5rem; margin-bottom: 1rem;
}
.dwc-mini-stat {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    background: rgba(14,165,233,0.05);
    border-radius: var(--radius-md);
}
.dwc-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}
.dwc-num.text-danger { color: #ef4444; }
.dwc-num.text-success { color: #10b981; }
.dwc-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-top: 0.2rem;
}
/* Mini bar chart */
.dwc-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 60px;
}
.dwc-bar {
    flex: 1;
    background: linear-gradient(to top, #0ea5e9, #38bdf8);
    border-radius: 4px 4px 0 0;
    position: relative;
    min-height: 8px;
    transition: height 0.5s ease;
}
.dwc-bar::after {
    content: attr(data-label);
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    color: var(--text-secondary);
    white-space: nowrap;
}
.dwc-bar-green { background: linear-gradient(to top, #10b981, #34d399); }
.dwc-bar-orange { background: linear-gradient(to top, #f59e0b, #fbbf24); }
.dwc-bar-red { background: linear-gradient(to top, #ef4444, #f87171); }

/* Schedule */
.dwc-schedule { margin-bottom: 0.75rem; }
.schedule-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 0;
    font-size: 0.75rem;
}
.sch-time {
    width: 40px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.7rem;
}
.sch-dot {
    width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.sch-active { background: #10b981; box-shadow: 0 0 6px rgba(16,185,129,0.5); }
.sch-pending { background: #64748b; }
.sch-event { color: var(--text-secondary); }
.dwc-action-badge {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.2);
    font-size: 0.65rem;
    color: var(--secondary);
    font-weight: 600;
}

/* Mini pipeline */
.dwc-pipeline-mini {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}
.pm-stage {
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex; align-items: center; gap: 0.2rem;
}
.pm-stage span {
    display: inline-flex; align-items: center; justify-content: center;
    width: 16px; height: 16px; border-radius: 50%;
    font-size: 0.55rem; font-weight: 700;
}
.pm-done {
    background: rgba(16,185,129,0.15);
    color: var(--secondary);
}
.pm-done span { background: var(--secondary); color: #fff; }
.pm-active {
    background: rgba(14,165,233,0.2);
    color: var(--primary);
    border: 1px solid rgba(14,165,233,0.3);
}
.pm-active span { background: var(--primary); color: #fff; }
.pm-wait {
    background: rgba(100,116,139,0.1);
    color: var(--text-secondary);
}
.pm-wait span { background: rgba(100,116,139,0.3); color: var(--text-secondary); }
.pm-arrow {
    color: var(--text-secondary);
    font-size: 0.6rem;
    flex-shrink: 0;
}
.dwc-timeline-bar {
    position: relative;
    height: 8px;
    background: rgba(100,116,139,0.2);
    border-radius: 4px;
    overflow: visible;
}
.timeline-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #f59e0b);
    border-radius: 4px;
    transition: width 0.8s ease;
}
.timeline-label {
    position: absolute;
    right: 0; top: -20px;
    font-size: 0.65rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Checklist */
.dwc-checklist { margin-bottom: 0.75rem; }
.chk-item {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.25rem 0;
    font-size: 0.75rem;
}
.chk-done { color: var(--secondary); }
.chk-done i { color: var(--secondary); }
.chk-pending { color: var(--text-secondary); }
.chk-pending i { color: var(--text-light); }
.dwc-progress-ring {
    text-align: center; margin-top: 0.5rem;
}
.ring-percent {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}
.ring-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-secondary);
}

/* ===================================
   V3 — MONITORING DASHBOARD FULL CSS
   관제센터 인트로, KPI, 대시보드 6위젯
   =================================== */

/* ---- MONITORING INTRO V3 ---- */
.mon-intro-v3 {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}
.mon-intro-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-xl);
    padding: 2rem 2.5rem;
    margin-bottom: 1.5rem;
}
.mon-intro-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}
.mon-intro-icon-wrap {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mon-intro-icon-wrap > i {
    font-size: 2rem;
    color: var(--primary);
    z-index: 2;
    position: relative;
}
.mon-intro-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.15);
    animation: monPulse 2s ease-in-out infinite;
}
@keyframes monPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0; }
}
.mon-intro-left h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.35rem;
}
.mon-intro-left p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.mon-intro-live {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    flex-shrink: 0;
}
.mon-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
    animation: liveBlink 1.5s infinite;
}
@keyframes liveBlink {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
    50% { opacity: 0.5; box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}
.mon-intro-live span {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    color: #ef4444;
    letter-spacing: 0.05em;
}

/* KPI Strip */
.mon-kpi-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.mon-kpi-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border-left: 3px solid transparent;
}
.mon-kpi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.mkc-blue { border-left-color: #0ea5e9; }
.mkc-green { border-left-color: #10b981; }
.mkc-amber { border-left-color: #f59e0b; }
.mkc-red { border-left-color: #ef4444; }
.mkc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}
.mkc-blue .mkc-icon { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.mkc-green .mkc-icon { background: linear-gradient(135deg, #10b981, #059669); }
.mkc-amber .mkc-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.mkc-red .mkc-icon { background: linear-gradient(135deg, #ef4444, #dc2626); }
.mkc-data { flex: 1; }
.mkc-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}
.mkc-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-top: 0.2rem;
}
.mkc-trend {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    flex-shrink: 0;
}
.mkc-trend-up {
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
}
.mkc-trend-down {
    background: rgba(14, 165, 233, 0.12);
    color: #0ea5e9;
}
.mkc-badge-alert {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6rem;
    font-weight: 700;
    color: #ef4444;
    background: rgba(239,68,68,0.12);
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    animation: alertFlash 2s infinite;
}
@keyframes alertFlash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ---- DASHBOARD V3 ---- */
.dashboard-v3 {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}
.dash-v3-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.dash-v3-header > i {
    color: var(--primary);
    font-size: 1.1rem;
}
.dash-v3-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    flex: 1;
}
.dash-v3-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.25);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary);
}

/* Dashboard Grid */
.dash-v3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

/* Dashboard Widget Base */
.dw3 {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}
.dw3:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
    border-color: rgba(14,165,233,0.3);
}
.dw3-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--glass-border);
}
.dw3-head-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}
.dw3-head-red .dw3-head-icon { background: linear-gradient(135deg, #ef4444, #dc2626); }
.dw3-head-blue .dw3-head-icon { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.dw3-head-green .dw3-head-icon { background: linear-gradient(135deg, #10b981, #059669); }
.dw3-head-amber .dw3-head-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
.dw3-head-purple .dw3-head-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.dw3-head-teal .dw3-head-icon { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.dw3-head h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
    flex: 1;
}
.dw3-head-count {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-white);
    background: rgba(100,116,139,0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}
.dw3-hc-warn { background: rgba(239,68,68,0.2); color: #ef4444; }
.dw3-body {
    padding: 1.25rem;
}

/* Widget 1: Alert Center */
.dw3-alert-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    transition: background 0.2s;
}
.dw3-alert-item:last-child { margin-bottom: 0; }
.dw3-alert-item:hover { background: rgba(100,116,139,0.08); }
.dw3-ai-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dw3-dot-pulse-red {
    background: #ef4444;
    animation: dotPulseRed 1.5s infinite;
}
@keyframes dotPulseRed {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.5); }
    50% { box-shadow: 0 0 0 5px rgba(239,68,68,0); }
}
.dw3-dot-orange { background: #f97316; }
.dw3-dot-amber { background: #f59e0b; }
.dw3-dot-blue { background: #0ea5e9; }
.dw3-ai-content { flex: 1; min-width: 0; }
.dw3-ai-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.1rem;
}
.dw3-ai-meta {
    font-size: 0.6rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dw3-ai-level {
    font-size: 0.55rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    flex-shrink: 0;
    letter-spacing: 0.03em;
}
.dw3-lv-critical { background: rgba(239,68,68,0.15); color: #ef4444; border: 1px solid rgba(239,68,68,0.3); }
.dw3-lv-high { background: rgba(249,115,22,0.15); color: #f97316; border: 1px solid rgba(249,115,22,0.3); }
.dw3-lv-medium { background: rgba(245,158,11,0.15); color: #f59e0b; border: 1px solid rgba(245,158,11,0.3); }
.dw3-lv-low { background: rgba(14,165,233,0.15); color: #0ea5e9; border: 1px solid rgba(14,165,233,0.3); }

/* Widget 2: Donut Chart */
.dw3-donut-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.dw3-donut {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}
.dw3-donut-svg {
    width: 100%;
    height: 100%;
}
.dw3-donut-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.dw3-donut-pct {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
}
.dw3-donut-label {
    font-size: 0.6rem;
    color: var(--text-secondary);
}
.dw3-donut-legend {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.dw3-legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.dw3-lg-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    flex-shrink: 0;
}
.dw3-lg-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    flex: 1;
}
.dw3-lg-val {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-white);
}

/* Widget 3: Map */
.dw3-map-visual {
    position: relative;
}
.dw3-map-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.dw3-map-zone {
    padding: 0.65rem;
    border-radius: var(--radius-sm);
    background: rgba(241, 245, 249, 0.6);
    border: 1px solid rgba(100,116,139,0.1);
    text-align: center;
    transition: all 0.2s;
}
.dw3-map-zone:hover {
    border-color: var(--primary);
    background: rgba(14,165,233,0.05);
}
.dw3-mz-center {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(14,165,233,0.06);
    border-color: rgba(14,165,233,0.15);
}
.dw3-mz-nw { grid-column: 1; grid-row: 1; }
.dw3-mz-ne { grid-column: 3; grid-row: 1; }
.dw3-mz-sw { grid-column: 1; grid-row: 2; }
.dw3-mz-se { grid-column: 3; grid-row: 2; }
.dw3-mz-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.3rem;
}
.dw3-mz-dots {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 0.25rem;
}
.dw3-dot-active {
    width: 7px; height: 7px; border-radius: 50%;
    background: #10b981;
    animation: dotGlow 2s infinite;
}
@keyframes dotGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.3); }
    50% { box-shadow: 0 0 0 3px rgba(16,185,129,0); }
}
.dw3-dot-done {
    width: 7px; height: 7px; border-radius: 50%;
    background: #64748b;
}
.dw3-dot-pending {
    width: 7px; height: 7px; border-radius: 50%;
    background: #f59e0b;
}
.dw3-mz-count {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
}
.dw3-map-legend {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.6rem;
    color: var(--text-secondary);
}
.dw3-map-legend > span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.dw3-mleg-dot {
    width: 7px; height: 7px; border-radius: 50%;
    display: inline-block;
}
.dw3-mleg-active { background: #10b981; }
.dw3-mleg-done { background: #64748b; }
.dw3-mleg-pending { background: #f59e0b; }

/* Widget 4: Delay Tracker */
.dw3-delay-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.dw3-delay-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 0.5rem;
    align-items: center;
}
.dw3-di-info {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.dw3-di-id {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
}
.dw3-di-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-white);
}
.dw3-di-bar-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.dw3-di-bar {
    flex: 1;
    height: 8px;
    background: rgba(100,116,139,0.15);
    border-radius: 4px;
    overflow: hidden;
}
.dw3-di-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease;
}
.dw3-dif-danger { background: linear-gradient(90deg, #f59e0b, #ef4444); }
.dw3-dif-warn { background: linear-gradient(90deg, #f59e0b, #f97316); }
.dw3-dif-caution { background: linear-gradient(90deg, #10b981, #f59e0b); }
.dw3-di-day {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-secondary);
    flex-shrink: 0;
}
.dw3-did-danger { color: #ef4444; }
.dw3-did-warn { color: #f59e0b; }
.dw3-di-stage {
    font-size: 0.6rem;
    color: var(--text-muted);
    background: rgba(100,116,139,0.1);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    white-space: nowrap;
}
.dw3-delay-footer {
    padding-top: 0.5rem;
}
.dw3-delay-limit-line {
    position: relative;
    height: 1px;
    background: rgba(239,68,68,0.3);
}
.dw3-dll-marker {
    position: absolute;
    right: 0;
    top: -8px;
    font-size: 0.55rem;
    font-weight: 700;
    color: #ef4444;
    background: rgba(239,68,68,0.1);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
}

/* Widget 5: Contact */
.dw3-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.dw3-contact-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: all 0.2s;
}
.dw3-contact-item:hover {
    background: rgba(100,116,139,0.08);
    border-color: var(--glass-border);
}
.dw3-ci-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}
.dw3-ci-blue { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.dw3-ci-green { background: linear-gradient(135deg, #10b981, #059669); }
.dw3-ci-pink { background: linear-gradient(135deg, #ec4899, #db2777); }
.dw3-ci-info { flex: 1; min-width: 0; }
.dw3-ci-role {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-bottom: 0.1rem;
}
.dw3-ci-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-white);
}
.dw3-ci-status {
    font-size: 0.55rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
}
.dw3-ci-status i { font-size: 0.4rem; }
.dw3-cis-online { color: #10b981; }
.dw3-cis-offline { color: #64748b; }
.dw3-ci-actions {
    display: flex;
    gap: 0.3rem;
    flex-shrink: 0;
}
.dw3-btn-call, .dw3-btn-msg {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid var(--glass-border);
    background: rgba(241,245,249,0.6);
    color: var(--text-secondary);
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.dw3-btn-call:hover { background: rgba(16,185,129,0.15); color: #10b981; border-color: rgba(16,185,129,0.3); }
.dw3-btn-msg:hover { background: rgba(14,165,233,0.15); color: #0ea5e9; border-color: rgba(14,165,233,0.3); }

/* Widget 6: Analytics Bar Chart */
.dw3-bar-chart {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.dw3-bar-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.dw3-bar-label {
    width: 18px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-align: center;
}
.dw3-bar-track {
    flex: 1;
    height: 10px;
    background: rgba(100,116,139,0.12);
    border-radius: 5px;
    overflow: hidden;
}
.dw3-bar-fill {
    height: 100%;
    border-radius: 5px;
    transition: width 0.8s ease;
}
.dw3-bf-blue { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.dw3-bf-green { background: linear-gradient(90deg, #10b981, #fbbf24); }
.dw3-bar-val {
    width: 30px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: right;
}
.dw3-analytics-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--glass-border);
}
.dw3-as-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.dw3-as-label {
    font-size: 0.65rem;
    color: var(--text-muted);
}
.dw3-as-val {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-white);
}
.dw3-as-up { color: #10b981; }
.dw3-as-up i { margin-right: 0.1rem; }
.dw3-as-divider {
    width: 1px;
    height: 16px;
    background: var(--glass-border);
}

/* ---- MONITOR FEATURE V2 ---- */
.monitoring-features-v2 { margin-top: 3rem; }
.monitoring-features-v2 > h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    display: flex; align-items: center; gap: 0.75rem;
}
.monitoring-features-v2 > h3 i { color: var(--secondary); }
.monitor-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.monitor-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition-base);
}
.monitor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary);
}
.mc-icon-wrap {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.mc-icon-wrap i {
    font-size: 1.4rem;
}
.mc-icon-wrap.mc-red i { color: #ef4444; }
.mc-icon-wrap.mc-pink i { color: #ec4899; }
.mc-icon-wrap.mc-amber i { color: #f59e0b; }
.mc-icon-wrap.mc-green i { color: #10b981; }
.mc-num {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-secondary);
    background: rgba(100,116,139,0.15);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}
.mc-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.mc-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

/* Timeline mini */
.mc-timeline {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}
.mc-tl-step {
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    background: rgba(14,165,233,0.1);
    border: 1px solid rgba(14,165,233,0.2);
    font-size: 0.65rem;
    color: var(--text-secondary);
}
.mc-tl-alert {
    background: rgba(239,68,68,0.15);
    border-color: rgba(239,68,68,0.3);
    color: #ef4444;
    font-weight: 600;
}
.mc-tl-arrow { color: var(--text-secondary); font-size: 0.7rem; }

/* Vitals mini */
.mc-vitals { display: flex; flex-direction: column; gap: 0.4rem; }
.vital-indicator {
    display: flex; align-items: center; gap: 0.5rem;
}
.vital-label {
    width: 30px;
    font-size: 0.65rem;
    color: var(--text-secondary);
    font-weight: 600;
}
.vital-bar {
    flex: 1; height: 6px;
    background: rgba(100,116,139,0.2);
    border-radius: 3px;
    overflow: hidden;
}
.vital-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
}
.vital-warn { background: linear-gradient(90deg, #f59e0b, #ef4444); }
.vital-ok { background: linear-gradient(90deg, #10b981, #34d399); }
.vital-val {
    width: 45px;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: right;
}
.vital-val.text-danger { color: #ef4444; }
.vital-val.text-success { color: #10b981; }

/* Delay gauge */
.mc-delay-gauge { margin-bottom: 0.5rem; }
.delay-track {
    position: relative;
    height: 10px;
    background: rgba(100,116,139,0.2);
    border-radius: 5px;
    margin-bottom: 0.5rem;
    overflow: visible;
}
.delay-progress {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #f59e0b, #ef4444);
    border-radius: 5px;
    position: relative;
}
.delay-day {
    position: absolute;
    right: -4px; top: -20px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #f59e0b;
    background: rgba(245,158,11,0.15);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}
.delay-limit {
    position: absolute;
    right: 0; top: -20px;
    font-size: 0.6rem;
    color: var(--text-secondary);
}
.delay-status {
    font-size: 0.7rem;
    color: #f59e0b;
    font-weight: 600;
}
.delay-status i { margin-right: 0.2rem; }

/* Satisfaction */
.mc-satisfaction { text-align: center; }
.sat-stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.sat-score {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.4rem;
}
.sat-bar-mini {
    height: 6px;
    background: rgba(100,116,139,0.2);
    border-radius: 3px;
    overflow: hidden;
    max-width: 200px;
    margin: 0 auto;
}
.sat-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #10b981);
    border-radius: 3px;
}

/* ===================================
   V3 — SYSTEM ARCH / ROADMAP / BUDGET
   11·12·13페이지 풀 비주얼 재구성
   =================================== */

/* ---- SYSTEM ARCHITECTURE V3 (p.11) ---- */
.system-architecture-v3 { position: relative; z-index: 1; margin-bottom: 2rem; }
.system-architecture-v3 > h3 {
    font-family: var(--font-display); font-size: 1.3rem; color: var(--text-white);
    margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.75rem;
}
.system-architecture-v3 > h3 i { color: var(--primary); }
.sa3-subtitle { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 2rem; padding-left: 2.05rem; }
.sa3-diagram { display: flex; flex-direction: column; gap: 0; }
.sa3-layer {
    background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
    padding: 1rem 1.5rem; display: flex; align-items: center; gap: 1rem;
    transition: all var(--transition-base);
}
.sa3-layer:hover { transform: translateX(4px); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.sa3-layer-label {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
    color: var(--text-white); white-space: nowrap; min-width: 180px;
}
.sa3-ln {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; border-radius: 50%; font-size: 0.6rem; font-weight: 800;
    color: #fff; flex-shrink: 0;
}
.sa3-l-user .sa3-ln { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.sa3-l-app .sa3-ln { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.sa3-l-gateway .sa3-ln { background: linear-gradient(135deg, #f59e0b, #d97706); }
.sa3-l-micro .sa3-ln { background: linear-gradient(135deg, #10b981, #059669); }
.sa3-l-data .sa3-ln { background: linear-gradient(135deg, #ec4899, #db2777); }
.sa3-l-external .sa3-ln { background: linear-gradient(135deg, #64748b, #475569); }
.sa3-l-user { border-left: 3px solid #8b5cf6; }
.sa3-l-app { border-left: 3px solid #0ea5e9; }
.sa3-l-gateway { border-left: 3px solid #f59e0b; }
.sa3-l-micro { border-left: 3px solid #10b981; }
.sa3-l-data { border-left: 3px solid #ec4899; }
.sa3-l-external { border-left: 3px solid #64748b; }
.sa3-layer-cards { display: flex; gap: 0.6rem; flex: 1; flex-wrap: wrap; }
.sa3-lc {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.4rem 0.75rem; border-radius: var(--radius-sm);
    background: rgba(241, 245, 249, 0.6); border: 1px solid rgba(100,116,139,0.12);
    font-size: 0.7rem; color: var(--text-secondary); transition: all 0.2s;
}
.sa3-lc:hover { border-color: var(--primary); color: var(--text-white); }
.sa3-lc i { font-size: 0.65rem; color: var(--text-muted); }
.sa3-arrow {
    display: flex; align-items: center; justify-content: center;
    padding: 0.35rem 0; color: var(--primary); font-size: 0.8rem; opacity: 0.4;
}
.sa3-arrow-ext { color: #64748b; }

/* ---- ROADMAP V3 (p.12) ---- */
.roadmap-v3 {
    background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border); border-radius: var(--radius-xl);
    overflow: hidden; margin-bottom: 2rem; position: relative; z-index: 1;
}
.rm3-header {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 1.25rem 2rem; border-bottom: 1px solid var(--glass-border);
}
.rm3-header > i { color: var(--primary); font-size: 1.1rem; }
.rm3-header h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-white); flex: 1; }
.rm3-period-badge {
    padding: 0.25rem 0.75rem; border-radius: 999px;
    background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.2);
    font-size: 0.65rem; font-weight: 600; color: var(--primary);
}

/* Gantt Chart */
.rm3-gantt { padding: 1.5rem 2rem; }
.rm3-gantt-months {
    display: grid; grid-template-columns: repeat(8, 1fr); gap: 0;
    margin-bottom: 1.25rem; margin-left: 180px;
}
.rm3-month {
    text-align: center; font-family: var(--font-display);
    font-size: 0.65rem; font-weight: 700; color: var(--text-muted);
    padding-bottom: 0.5rem; border-bottom: 1px solid rgba(100,116,139,0.1);
}
.rm3-phase-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.5rem; }
.rm3-phase-info { display: flex; align-items: center; gap: 0.6rem; min-width: 170px; }
.rm3-phase-icon {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; color: #fff; flex-shrink: 0;
}
.rm3-pi-blue { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.rm3-pi-green { background: linear-gradient(135deg, #10b981, #059669); }
.rm3-pi-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.rm3-phase-name { font-size: 0.6rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.05em; }
.rm3-phase-title { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--text-white); }
.rm3-bar-track {
    flex: 1; height: 28px; position: relative;
    background: rgba(100,116,139,0.06); border-radius: 6px; overflow: visible;
}
.rm3-bar {
    position: absolute; top: 0; height: 100%; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem; font-weight: 700; color: #fff;
    transition: all 0.8s ease;
}
.rm3-bar-blue { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.rm3-bar-green { background: linear-gradient(90deg, #10b981, #34d399); }
.rm3-bar-purple { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }

/* Phase details */
.rm3-phase-detail {
    margin-left: 180px; padding: 0.5rem 0 1rem;
    display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.rm3-detail-tasks {
    display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.rm3-detail-tasks span {
    display: inline-flex; align-items: center; gap: 0.25rem;
    font-size: 0.6rem; color: var(--text-secondary);
}
.rm3-detail-tasks span i { color: var(--secondary); font-size: 0.55rem; }
.rm3-detail-outputs { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.rm3-output-tag {
    padding: 0.15rem 0.5rem; border-radius: 999px;
    background: rgba(14,165,233,0.08); border: 1px solid rgba(14,165,233,0.15);
    font-size: 0.55rem; color: var(--primary); font-weight: 600;
}

/* ---- MILESTONES V3 ---- */
.milestones-v3 { margin-bottom: 2rem; position: relative; z-index: 1; }
.ms3-header {
    display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem;
}
.ms3-header > i { color: var(--accent); font-size: 1.1rem; }
.ms3-header h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text-white); }
.ms3-track {
    display: flex; gap: 0; position: relative; justify-content: space-between;
}
.ms3-line {
    position: absolute; top: 16px; left: 5%; right: 5%; height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #10b981, #f59e0b, #fbbf24);
    border-radius: 2px; z-index: 0;
}
.ms3-item {
    flex: 1; text-align: center; position: relative; z-index: 1;
}
.ms3-dot {
    width: 14px; height: 14px; border-radius: 50%; margin: 0 auto 0.5rem;
    border: 3px solid var(--bg-dark);
}
.ms3-item-blue .ms3-dot { background: #0ea5e9; box-shadow: 0 0 0 3px var(--bg-dark), 0 0 10px rgba(14,165,233,0.4); }
.ms3-item-green .ms3-dot { background: #10b981; box-shadow: 0 0 0 3px var(--bg-dark), 0 0 10px rgba(16,185,129,0.4); }
.ms3-item-amber .ms3-dot { background: #f59e0b; box-shadow: 0 0 0 3px var(--bg-dark), 0 0 10px rgba(245,158,11,0.4); }
.ms3-item-gold .ms3-dot { background: #fbbf24; box-shadow: 0 0 0 3px var(--bg-dark), 0 0 10px rgba(251,191,36,0.5); }
.ms3-date {
    font-family: var(--font-display); font-size: 0.7rem; font-weight: 800;
    color: var(--primary); margin-bottom: 0.5rem;
}
.ms3-card {
    background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
    padding: 1rem; transition: all var(--transition-base);
}
.ms3-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); border-color: var(--primary); }
.ms3-card-icon { font-size: 1.2rem; margin-bottom: 0.5rem; }
.ms3-item-blue .ms3-card-icon { color: #0ea5e9; }
.ms3-item-green .ms3-card-icon { color: #10b981; }
.ms3-item-amber .ms3-card-icon { color: #f59e0b; }
.ms3-item-gold .ms3-card-icon { color: #fbbf24; }
.ms3-card h4 { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.25rem; }
.ms3-card p { font-size: 0.7rem; color: var(--text-secondary); line-height: 1.4; }
.ms3-card p strong { color: var(--text-white); }

/* ---- TEAM ORG V3 ---- */
.team-org-v3 { position: relative; z-index: 1; }
.to3-header {
    display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem;
}
.to3-header > i { color: var(--secondary); font-size: 1.1rem; }
.to3-header h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text-white); flex: 1; }
.to3-total-badge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.3rem 0.8rem; border-radius: 999px;
    background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.25);
    font-size: 0.7rem; font-weight: 700; color: var(--secondary);
}
.to3-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.to3-card {
    background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
    padding: 1.25rem; text-align: center; transition: all var(--transition-base);
    border-top: 3px solid transparent;
}
.to3-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.to3-pm { border-top-color: #fbbf24; }
.to3-dev { border-top-color: #0ea5e9; }
.to3-design { border-top-color: #ec4899; }
.to3-qa { border-top-color: #10b981; }
.to3-infra { border-top-color: #8b5cf6; }
.to3-sec { border-top-color: #ef4444; }
.to3-edu { border-top-color: #14b8a6; }
.to3-card-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
.to3-pm .to3-card-icon { color: #fbbf24; }
.to3-dev .to3-card-icon { color: #0ea5e9; }
.to3-design .to3-card-icon { color: #ec4899; }
.to3-qa .to3-card-icon { color: #10b981; }
.to3-infra .to3-card-icon { color: #8b5cf6; }
.to3-sec .to3-card-icon { color: #ef4444; }
.to3-edu .to3-card-icon { color: #14b8a6; }
.to3-card h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--text-white); margin-bottom: 0.3rem; }
.to3-count { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--primary); margin-bottom: 0.4rem; }
.to3-role-tag {
    font-size: 0.6rem; color: var(--text-muted);
    background: rgba(100,116,139,0.1); padding: 0.2rem 0.5rem; border-radius: 999px;
    display: inline-block;
}
.to3-sub-roles { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.3rem; }
.to3-sub-roles span {
    padding: 0.15rem 0.45rem; border-radius: 999px;
    background: rgba(14,165,233,0.08); border: 1px solid rgba(14,165,233,0.15);
    font-size: 0.55rem; color: var(--primary); font-weight: 600;
}

/* ---- BUDGET V3 (p.13) ---- */
.bg3-total-banner {
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(135deg, rgba(251,191,36,0.08), rgba(14,165,233,0.04));
    border: 1px solid rgba(251,191,36,0.2); border-radius: var(--radius-xl);
    padding: 1.5rem 2rem; margin-bottom: 2rem; gap: 2rem;
    position: relative; z-index: 1;
}
.bg3-total-left { display: flex; align-items: center; gap: 1.25rem; }
.bg3-total-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.5rem; flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(251,191,36,0.3);
}
.bg3-total-label { font-size: 0.75rem; color: var(--text-secondary); margin-bottom: 0.2rem; }
.bg3-total-amount { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.bg3-total-meta { display: flex; gap: 1.5rem; flex-shrink: 0; }
.bg3-meta-item {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.75rem; color: var(--text-secondary);
}
.bg3-meta-item i { color: var(--text-muted); font-size: 0.7rem; }

/* Breakdown */
.bg3-breakdown {
    background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border); border-radius: var(--radius-xl);
    overflow: hidden; margin-bottom: 2rem; position: relative; z-index: 1;
}
.bg3-bk-header {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 1.25rem 2rem; border-bottom: 1px solid var(--glass-border);
}
.bg3-bk-header > i { color: var(--accent); font-size: 1rem; }
.bg3-bk-header h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-white); }
.bg3-visual-bars { padding: 1.5rem 2rem; }
.bg3-cat { margin-bottom: 1.5rem; }
.bg3-cat:last-child { margin-bottom: 0; }
.bg3-cat-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.bg3-cat-icon {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; color: #fff; flex-shrink: 0;
}
.bg3-ci-blue { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.bg3-ci-green { background: linear-gradient(135deg, #10b981, #059669); }
.bg3-ci-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.bg3-ci-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.bg3-cat-name { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--text-white); flex: 1; }
.bg3-cat-amount { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--text-white); }
.bg3-cat-pct {
    font-family: var(--font-display); font-size: 0.75rem; font-weight: 800; color: var(--primary);
    background: rgba(14,165,233,0.1); padding: 0.15rem 0.5rem; border-radius: 999px;
}
.bg3-cat-bar { height: 10px; background: rgba(100,116,139,0.1); border-radius: 5px; overflow: hidden; margin-bottom: 0.5rem; }
.bg3-bar-fill { height: 100%; border-radius: 5px; transition: width 1s ease; }
.bg3-bf-blue { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.bg3-bf-green { background: linear-gradient(90deg, #10b981, #34d399); }
.bg3-bf-purple { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.bg3-bf-amber { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.bg3-cat-subs { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.bg3-cat-subs span {
    font-size: 0.6rem; color: var(--text-secondary);
    background: rgba(100,116,139,0.08); padding: 0.2rem 0.5rem; border-radius: 999px;
}
.bg3-cat-subs small { color: var(--text-muted); margin-left: 0.15rem; }

/* Yearly Investment */
.bg3-yearly {
    background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border); border-radius: var(--radius-xl);
    overflow: hidden; margin-bottom: 2rem; position: relative; z-index: 1;
}
.bg3-yr-header {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 1.25rem 2rem; border-bottom: 1px solid var(--glass-border);
}
.bg3-yr-header > i { color: var(--primary); font-size: 1rem; }
.bg3-yr-header h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-white); }
.bg3-yr-chart { padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 1rem; }
.bg3-yr-item { display: flex; align-items: center; gap: 1rem; }
.bg3-yr-label { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--text-white); min-width: 70px; }
.bg3-yr-bar-track { flex: 1; height: 24px; background: rgba(100,116,139,0.08); border-radius: 6px; overflow: hidden; }
.bg3-yr-bar {
    height: 100%; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; font-weight: 700; color: #fff; min-width: 60px;
    transition: width 1s ease;
}
.bg3-yrb-primary { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.bg3-yrb-green { background: linear-gradient(90deg, #10b981, #34d399); }
.bg3-yrb-teal { background: linear-gradient(90deg, #14b8a6, #2dd4bf); }
.bg3-yr-desc { font-size: 0.65rem; color: var(--text-muted); min-width: 120px; }

/* ---- QUALITATIVE OUTCOMES V2 ---- */
.qualitative-outcomes-v2 { margin-top: 3rem; }
.qualitative-outcomes-v2 > h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    display: flex; align-items: center; gap: 0.75rem;
}
.qualitative-outcomes-v2 > h3 i { color: #ec4899; }
.qual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}
.qual-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all var(--transition-base);
}
.qual-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary);
}
.qual-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
}
.qual-icon-blue { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.qual-icon-green { background: linear-gradient(135deg, #10b981, #059669); }
.qual-icon-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.qual-icon-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.qual-icon-teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.qual-body h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.qual-body p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.qual-indicator {
    display: flex; align-items: center; gap: 0.5rem;
}
.qi-bar {
    flex: 1; height: 6px;
    background: rgba(100,116,139,0.2);
    border-radius: 3px;
    overflow: hidden;
}
.qi-bar .qi-fill {
    height: 100%;
    background: linear-gradient(90deg, #0ea5e9, #38bdf8);
    border-radius: 3px;
    transition: width 0.8s ease;
}
.qi-bar-green .qi-fill { background: linear-gradient(90deg, #10b981, #34d399); }
.qi-bar-purple .qi-fill { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.qi-bar-orange .qi-fill { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.qi-bar-teal .qi-fill { background: linear-gradient(90deg, #14b8a6, #2dd4bf); }
.qual-indicator > span {
    font-size: 0.65rem;
    color: var(--text-secondary);
    white-space: nowrap;
    font-weight: 600;
}

/* ---- BUDGET NOTES V2 ---- */
.budget-notes-v2 { margin-top: 3rem; }
.budget-notes-v2 > h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
}
.budget-notes-v2 > h3 i { color: var(--info); }
.budget-notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}
.bnote-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
    transition: all var(--transition-base);
}
.bnote-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary);
}
.bnote-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.bnote-card h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.bnote-card p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ---- API SPEC CARDS V2 ---- */
.api-specs-v2 { margin-top: 3rem; }
.api-specs-v2 > h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
}
.api-specs-v2 > h3 i { color: var(--secondary); }
.api-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}
.api-spec-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}
.api-spec-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary);
}
.asc-header {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--glass-border);
}
.asc-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(14,165,233,0.2), rgba(14,165,233,0.05));
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
}
.asc-header h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--text-white);
    font-weight: 600;
}
.asc-specs { padding: 1rem 1.25rem; }
.asc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    border-bottom: 1px dashed rgba(100,116,139,0.15);
}
.asc-row:last-child { border-bottom: none; }
.asc-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
}
.asc-val {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}
.asc-purpose {
    padding: 0.75rem 1.25rem;
    background: rgba(14,165,233,0.05);
    border-top: 1px solid var(--glass-border);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    text-align: center;
}

/* ===================================
   EXECUTIVE SUMMARY — 1-Page Infographic
   =================================== */

/* --- Top Banner --- */
.es-top-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(139,92,246,0.08));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}
.es-top-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14,165,233,0.08), transparent 70%);
    pointer-events: none;
}
.es-top-left {
    flex: 1;
}
.es-law-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    background: rgba(251,191,36,0.12);
    border: 1px solid rgba(251,191,36,0.3);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.es-law-badge i { font-size: 0.7rem; }
.es-top-left h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}
.es-top-left h3 span {
    background: linear-gradient(90deg, var(--primary), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.es-top-left p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* --- Top KPIs --- */
.es-top-kpis {
    display: flex;
    gap: 1rem;
}
.es-kpi {
    text-align: center;
    padding: 1rem 1.25rem;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    min-width: 100px;
    transition: transform 0.3s, border-color 0.3s;
}
.es-kpi:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}
.es-kpi-val {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.es-kpi-val small {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
}
.es-kpi-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

/* --- Main Diagram: 3-column --- */
.es-main-diagram {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

/* --- Columns --- */
.es-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* --- Blocks (shared card style) --- */
.es-block {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.es-block:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(14,165,233,0.12);
}
.es-block-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.es-block-title i { color: var(--primary); font-size: 0.8rem; }

/* --- 3대 핵심 전략 --- */
.es-strat-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    transition: transform 0.2s;
}
.es-strat-item:hover { transform: translateX(4px); }
.es-si-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
}
.es-si-blue { background: rgba(14,165,233,0.08); }
.es-si-blue .es-si-num { background: rgba(14,165,233,0.2); color: var(--primary); }
.es-si-green { background: rgba(52,211,153,0.08); }
.es-si-green .es-si-num { background: rgba(52,211,153,0.2); color: var(--secondary); }
.es-si-purple { background: rgba(139,92,246,0.08); }
.es-si-purple .es-si-num { background: rgba(139,92,246,0.2); color: #a78bfa; }
.es-si-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.15rem;
}
.es-si-desc {
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* --- 기술 아키텍처 요약 --- */
.es-tech-layers {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.es-tl {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    color: var(--text-secondary);
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(56,189,248,0.06);
}
.es-tl:last-child { border-bottom: none; }
.es-tl-tag {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    font-size: 0.58rem;
    font-weight: 700;
    color: #fff;
    min-width: 52px;
    text-align: center;
    flex-shrink: 0;
}
.es-tl-1 { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }
.es-tl-2 { background: linear-gradient(135deg, #22c55e, #4ade80); }
.es-tl-3 { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.es-tl-4 { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.es-tl-5 { background: linear-gradient(135deg, #ec4899, #f472b6); }
.es-tl-6 { background: linear-gradient(135deg, #ef4444, #f87171); }

/* --- COD 허브 다이어그램 --- */
.es-hub-diagram {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 1.5rem;
}

/* COD 중심 원 */
.es-hub-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.es-hub-inner {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(14,165,233,0.3);
}
.es-hub-icon {
    font-size: 1.3rem;
    color: #fff;
}
.es-hub-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    margin-top: 0.1rem;
}
.es-hub-sub {
    font-size: 0.5rem;
    color: rgba(255,255,255,0.8);
    text-align: center;
    line-height: 1.2;
}

/* 펄스 애니메이션 */
.es-hub-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: esPulse 2s ease-out infinite;
    z-index: 1;
}
@keyframes esPulse {
    0%   { width: 100px; height: 100px; opacity: 0.6; }
    100% { width: 180px; height: 180px; opacity: 0; }
}

/* 4기관 노드 */
.es-hub-nodes {
    position: absolute;
    inset: 0;
    z-index: 2;
}
.es-hub-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    transition: transform 0.3s;
}
.es-hub-node:hover { transform: scale(1.1); }
.es-hub-node span {
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.es-hn-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.es-hni-blue   { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }
.es-hni-green  { background: linear-gradient(135deg, #22c55e, #4ade80); }
.es-hni-pink   { background: linear-gradient(135deg, #ec4899, #f472b6); }
.es-hni-purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }

/* 노드 포지션 */
.es-hn-top    { top: 0; left: 50%; transform: translateX(-50%); }
.es-hn-right  { right: 0; top: 50%; transform: translateY(-50%); }
.es-hn-bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.es-hn-left   { left: 0; top: 50%; transform: translateY(-50%); }
.es-hn-top:hover    { transform: translateX(-50%) scale(1.1); }
.es-hn-right:hover  { transform: translateY(-50%) scale(1.1); }
.es-hn-bottom:hover { transform: translateX(-50%) scale(1.1); }
.es-hn-left:hover   { transform: translateY(-50%) scale(1.1); }

/* 연결선 */
.es-hub-conn {
    position: absolute;
    background: linear-gradient(to bottom, var(--primary), rgba(14,165,233,0.1));
    z-index: 1;
}
.es-conn-top {
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 42px;
}
.es-conn-bottom {
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 42px;
}
.es-conn-right {
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 42px;
    background: linear-gradient(to right, rgba(14,165,233,0.1), var(--primary));
}
.es-conn-left {
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 42px;
    background: linear-gradient(to left, rgba(14,165,233,0.1), var(--primary));
}

/* --- COD 6단계 파이프라인 --- */
.es-pipeline {
    background: rgba(14,165,233,0.06);
    border: 1px solid rgba(14,165,233,0.15);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}
.es-pipe-title {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 0.75rem;
}
.es-pipe-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    flex-wrap: wrap;
}
.es-ps {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.6rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: all 0.2s;
}
.es-ps:hover {
    background: rgba(14,165,233,0.15);
    border-color: var(--primary);
    transform: translateY(-2px);
}
.es-ps-n {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 800;
}
.es-ps-t {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-white);
}
.es-ps-last {
    background: rgba(14,165,233,0.18);
    border-color: var(--primary);
}
.es-ps-arrow {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
}
.es-pipe-note {
    text-align: center;
    font-size: 0.65rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 0.6rem;
}
.es-pipe-note i { margin-right: 0.3rem; }

/* --- 3대 서비스축 --- */
.es-service-pillars {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}
.es-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    flex: 1;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.es-pillar:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.es-pillar i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}
.es-pillar span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-white);
}
.es-pillar small {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
    line-height: 1.2;
}
.es-pil-red {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.25);
}
.es-pil-red i { color: #f87171; }
.es-pil-green {
    background: rgba(52,211,153,0.1);
    border: 1px solid rgba(52,211,153,0.25);
}
.es-pil-green i { color: var(--secondary); }
.es-pil-blue {
    background: rgba(14,165,233,0.1);
    border: 1px solid rgba(14,165,233,0.25);
}
.es-pil-blue i { color: var(--primary); }

/* --- 로드맵 미니 --- */
.es-rm-phases {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.es-rm-phase {
    position: relative;
}
.es-rm-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #fff;
    transition: transform 0.2s;
}
.es-rm-bar:hover { transform: scaleX(1.02); }
.es-rmb-blue   { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.es-rmb-green  { background: linear-gradient(90deg, #22c55e, #4ade80); }
.es-rmb-purple { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.es-rm-label { font-weight: 700; }
.es-rm-period {
    font-size: 0.58rem;
    opacity: 0.85;
}
.es-rm-milestones {
    display: flex;
    justify-content: space-between;
    padding: 0 0.25rem;
}
.es-rm-milestones span {
    font-size: 0.58rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.es-rm-milestones span i {
    font-size: 0.35rem;
    color: var(--primary);
}
.es-rm-milestones span:last-child i {
    color: var(--accent);
    font-size: 0.5rem;
}

/* --- 핵심 KPI --- */
.es-kpi-items {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.es-kpi-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 10px;
    transition: background 0.2s;
}
.es-kpi-row:hover { background: rgba(14,165,233,0.06); }
.es-kpi-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.es-ki-green  { background: rgba(52,211,153,0.15); color: var(--secondary); }
.es-ki-blue   { background: rgba(14,165,233,0.15); color: var(--primary); }
.es-ki-gold   { background: rgba(251,191,36,0.15); color: var(--accent); }
.es-ki-pink   { background: rgba(236,72,153,0.15); color: #f472b6; }
.es-kpi-info span {
    font-size: 0.65rem;
    color: var(--text-muted);
    display: block;
}
.es-kpi-info strong {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-white);
}

/* --- 예산 미니 --- */
.es-budget-bars {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.es-bb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.es-bb-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    width: 42px;
    text-align: right;
    flex-shrink: 0;
}
.es-bb-track {
    flex: 1;
    height: 8px;
    background: rgba(100,116,139,0.15);
    border-radius: 4px;
    overflow: hidden;
}
.es-bb-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}
.es-bbf-blue   { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.es-bbf-purple { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.es-bbf-green  { background: linear-gradient(90deg, #22c55e, #4ade80); }
.es-bbf-amber  { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.es-bb-pct {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--primary);
    width: 30px;
    text-align: right;
}

/* --- 하단: AI 기능 & 기대효과 --- */
.es-bottom-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.es-bottom-section {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.25rem;
}
.es-bottom-title {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.es-bottom-title i { color: var(--primary); }

/* AI 기능 태그 */
.es-func-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.es-func-tags span {
    padding: 0.3rem 0.65rem;
    background: rgba(14,165,233,0.1);
    border: 1px solid rgba(14,165,233,0.2);
    border-radius: 20px;
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.2s;
}
.es-func-tags span:hover {
    background: rgba(14,165,233,0.2);
    border-color: var(--primary);
    transform: translateY(-1px);
}

/* 기대효과 태그 */
.es-effect-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}
.es-effect-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.62rem;
    font-weight: 600;
    transition: all 0.2s;
}
.es-effect-tags span:hover { transform: translateY(-2px); }
.es-et-green  { background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.25); color: var(--secondary); }
.es-et-blue   { background: rgba(14,165,233,0.12); border: 1px solid rgba(14,165,233,0.25); color: var(--primary); }
.es-et-purple { background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.25); color: #a78bfa; }
.es-et-gold   { background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.25); color: var(--accent); }
.es-et-pink   { background: rgba(236,72,153,0.12); border: 1px solid rgba(236,72,153,0.25); color: #f472b6; }

/* --- 운영주체 푸터바 --- */
.es-footer-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(90deg, rgba(14,165,233,0.08), rgba(139,92,246,0.08));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}
.es-footer-bar span {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.es-footer-bar span i {
    color: var(--primary);
    font-size: 0.6rem;
}

/* ===================================
   COD DEMO — Interactive Step-by-Step
   =================================== */

/* --- Controls --- */
.cd-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(139,92,246,0.06));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}
.cd-ctrl-hint {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-white);
    font-weight: 600;
    position: relative;
    flex-shrink: 0;
}
.cd-ctrl-hint i { color: var(--primary); font-size: 1.1rem; }
.cd-ctrl-hint kbd {
    padding: 0.2rem 0.65rem;
    background: rgba(14,165,233,0.2);
    border: 1px solid var(--primary);
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}
.cd-hint-pulse {
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: cdHintPulse 1.5s ease infinite;
}
@keyframes cdHintPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(14,165,233,0.5); }
    50% { box-shadow: 0 0 0 8px rgba(14,165,233,0); }
}
.cd-progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(100,116,139,0.15);
    border-radius: 3px;
    overflow: hidden;
}
.cd-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), #a78bfa);
    border-radius: 3px;
    transition: width 0.6s ease;
}
.cd-step-counter {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}
.cd-step-counter #cdStepTotal { color: var(--text-muted); }

/* --- Scene (2-column layout) --- */
.cd-scene {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}

/* --- Profile Card --- */
.cd-profile {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(236,72,153,0.08), rgba(139,92,246,0.06));
    border: 1px solid rgba(236,72,153,0.2);
    border-radius: 16px;
    margin-bottom: 2rem;
}
.cd-profile-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
    position: relative;
}
.cd-avatar-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #ec4899;
    animation: esPulse 2s ease-out infinite;
}
.cd-profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.7rem;
    background: rgba(251,191,36,0.15);
    border: 1px solid rgba(251,191,36,0.3);
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.4rem;
}
.cd-profile-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}
.cd-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}
.cd-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.62rem;
    font-weight: 600;
}
.cd-tag-red { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.25); color: #f87171; }
.cd-tag-blue { background: rgba(14,165,233,0.12); border: 1px solid rgba(14,165,233,0.25); color: var(--primary); }
.cd-tag-amber { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.25); color: #fbbf24; }
.cd-profile-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --- Timeline --- */
.cd-timeline {
    position: relative;
    padding-left: 2.5rem;
}
.cd-timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), #a78bfa, #ec4899, var(--secondary));
    opacity: 0.3;
}

/* --- Timeline Item --- */
.cd-tl-item {
    position: relative;
    margin-bottom: 1.25rem;
}

/* --- Timeline Node --- */
.cd-tl-node {
    position: absolute;
    left: -2.5rem;
    top: 1rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    z-index: 2;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
}
.cd-node-blue   { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }
.cd-node-green  { background: linear-gradient(135deg, #22c55e, #4ade80); }
.cd-node-purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.cd-node-amber  { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.cd-node-teal   { background: linear-gradient(135deg, #14b8a6, #2dd4bf); }
.cd-node-pink   { background: linear-gradient(135deg, #ec4899, #f472b6); }
.cd-node-red    { background: linear-gradient(135deg, #ef4444, #f87171); animation: cdSosPulse 1s ease infinite; }
.cd-tl-node i { font-size: 0.65rem; }

/* --- Timeline Card --- */
.cd-tl-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.cd-tl-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(14,165,233,0.1);
}

.cd-tl-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(56,189,248,0.08);
}
.cd-tl-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}
.cd-icon-blue   { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }
.cd-icon-green  { background: linear-gradient(135deg, #22c55e, #4ade80); }
.cd-icon-purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.cd-icon-amber  { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.cd-icon-teal   { background: linear-gradient(135deg, #14b8a6, #2dd4bf); }
.cd-icon-pink   { background: linear-gradient(135deg, #ec4899, #f472b6); }
.cd-icon-red    { background: linear-gradient(135deg, #ef4444, #f87171); }
.cd-tl-head h5 {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-white);
}
.cd-tl-time {
    font-size: 0.65rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.cd-tl-time i { font-size: 0.55rem; }

/* --- Timeline Badges --- */
.cd-tl-badge {
    margin-left: auto;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    flex-shrink: 0;
}
.cd-badge-instant { background: rgba(14,165,233,0.15); color: var(--primary); border: 1px solid rgba(14,165,233,0.3); }
.cd-badge-fast { background: rgba(52,211,153,0.15); color: var(--secondary); border: 1px solid rgba(52,211,153,0.3); }
.cd-badge-ai { background: rgba(139,92,246,0.15); color: #a78bfa; border: 1px solid rgba(139,92,246,0.3); display: inline-flex; align-items: center; gap: 0.3rem; }
.cd-badge-verify { background: rgba(245,158,11,0.15); color: #fbbf24; border: 1px solid rgba(245,158,11,0.3); }
.cd-badge-start { background: rgba(20,184,166,0.15); color: #2dd4bf; border: 1px solid rgba(20,184,166,0.3); display: inline-flex; align-items: center; gap: 0.3rem; }
.cd-badge-live { background: rgba(236,72,153,0.15); color: #f472b6; border: 1px solid rgba(236,72,153,0.3); display: inline-flex; align-items: center; gap: 0.3rem; animation: cdBadgePulse 1.5s ease infinite; }
.cd-badge-sos { background: rgba(239,68,68,0.25); color: #f87171; border: 1px solid rgba(239,68,68,0.5); animation: cdSosPulse 1s ease infinite; }
@keyframes cdBadgePulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes cdSosPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); } 50% { box-shadow: 0 0 0 6px rgba(239,68,68,0); } }

.cd-tl-body {
    padding: 1rem 1.25rem;
}
.cd-tl-body p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

/* --- Actions --- */
.cd-tl-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.cd-action {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.65rem;
    background: rgba(14,165,233,0.08);
    border: 1px solid rgba(14,165,233,0.15);
    border-radius: 8px;
    font-size: 0.62rem;
    color: var(--primary);
    font-weight: 600;
}

/* --- Checklist --- */
.cd-tl-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.cd-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    padding: 0.3rem 0;
}
.cd-checked { color: var(--secondary); }
.cd-checked i { color: var(--secondary); }

/* --- Assessment bars --- */
.cd-tl-assess {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.cd-assess-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.cd-assess-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.cd-ai-red    { background: rgba(239,68,68,0.15); color: #f87171; }
.cd-ai-amber  { background: rgba(245,158,11,0.15); color: #fbbf24; }
.cd-ai-purple { background: rgba(139,92,246,0.15); color: #a78bfa; }
.cd-ai-blue   { background: rgba(14,165,233,0.15); color: var(--primary); }
.cd-assess-info {
    flex: 1;
}
.cd-assess-info span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-white);
    display: block;
    margin-bottom: 0.25rem;
}
.cd-assess-bar {
    height: 6px;
    background: rgba(100,116,139,0.15);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.2rem;
}
.cd-ab-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.8s ease;
}
.cd-abf-red    { background: linear-gradient(90deg, #ef4444, #f87171); }
.cd-abf-amber  { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.cd-abf-purple { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.cd-abf-blue   { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.cd-assess-info small {
    font-size: 0.6rem;
    color: var(--text-muted);
}

/* --- Match Results --- */
.cd-match-results {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.cd-match-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    background: rgba(241,245,249,0.8);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    transition: all 0.2s;
}
.cd-match-item:hover { border-color: var(--primary); transform: translateX(4px); }
.cd-match-best {
    background: rgba(14,165,233,0.08);
    border-color: rgba(14,165,233,0.3);
}
.cd-match-rank {
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    background: rgba(14,165,233,0.15);
    color: var(--primary);
    flex-shrink: 0;
}
.cd-match-best .cd-match-rank {
    background: var(--primary);
    color: #fff;
}
.cd-match-info {
    flex: 1;
}
.cd-match-info strong {
    font-size: 0.78rem;
    color: var(--text-white);
    display: block;
    margin-bottom: 0.2rem;
}
.cd-match-scores {
    display: flex;
    gap: 0.75rem;
    font-size: 0.6rem;
    color: var(--text-muted);
}
.cd-match-scores i { margin-right: 0.2rem; font-size: 0.55rem; }
.cd-match-pct {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
}
.cd-match-best .cd-match-pct { color: var(--secondary); }

/* --- System Card --- */
.cd-card-system {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(14,165,233,0.05);
    border: 1px dashed rgba(14,165,233,0.25);
    border-radius: 14px;
}
.cd-sys-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(14,165,233,0.15), rgba(139,92,246,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary);
    flex-shrink: 0;
}
.cd-sys-content { flex: 1; }
.cd-sys-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
    display: block;
}
.cd-sys-content p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}
.cd-sys-status {
    padding: 0.3rem 0.7rem;
    background: rgba(52,211,153,0.15);
    border: 1px solid rgba(52,211,153,0.3);
    border-radius: 8px;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--secondary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* --- Services --- */
.cd-tl-services {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.cd-service {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.85rem;
    background: rgba(241,245,249,0.8);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}
.cd-svc-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #fff;
    flex-shrink: 0;
}
.cd-svc-green { background: linear-gradient(135deg, #22c55e, #4ade80); }
.cd-svc-pink  { background: linear-gradient(135deg, #ec4899, #f472b6); }
.cd-svc-blue  { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }
.cd-service strong {
    font-size: 0.78rem;
    color: var(--text-white);
    display: block;
}
.cd-service small {
    font-size: 0.62rem;
    color: var(--text-muted);
}

/* --- Monitor Grid --- */
.cd-monitor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}
.cd-mon-item {
    text-align: center;
    padding: 0.6rem;
    background: rgba(241,245,249,0.8);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}
.cd-mon-val {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.15rem;
}
.cd-mv-green { color: var(--secondary); }
.cd-mv-blue  { color: var(--primary); }
.cd-mv-amber { color: #fbbf24; }
.cd-mv-pink  { color: #f472b6; }
.cd-mon-item span { font-size: 0.6rem; color: var(--text-white); display: block; font-weight: 600; }
.cd-mon-item small { font-size: 0.55rem; color: var(--text-muted); }

/* --- Emergency Card --- */
.cd-card-emergency {
    border-color: rgba(239,68,68,0.35) !important;
    background: rgba(239,68,68,0.04);
}
.cd-card-emergency .cd-tl-head {
    border-bottom-color: rgba(239,68,68,0.15);
}
.cd-emergency-flow {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}
.cd-emer-step {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.65rem;
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: 8px;
}
.cd-emer-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cd-emer-step span {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.2;
}
.cd-emer-step small {
    display: block;
    font-size: 0.55rem;
    color: var(--text-muted);
    font-weight: 400;
}
.cd-emer-arrow {
    color: rgba(239,68,68,0.5);
    font-size: 0.7rem;
}

/* --- Right Panel Dashboard --- */
.cd-right-panel {
    position: sticky;
    top: 80px;
}
.cd-dashboard {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
}
.cd-dash-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    background: rgba(14,165,233,0.06);
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-white);
}
.cd-dash-header i { color: var(--primary); }
.cd-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    margin-left: auto;
    animation: cdBadgePulse 1.5s ease infinite;
}

/* Dashboard pipeline */
.cd-dash-pipeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    padding: 0.85rem 0.75rem;
    border-bottom: 1px solid var(--glass-border);
}
.cd-pip-stage {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.58rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(100,116,139,0.08);
    border: 1px solid transparent;
    transition: all 0.4s;
}
.cd-pip-stage.cd-pip-active {
    background: rgba(14,165,233,0.15);
    border-color: var(--primary);
    color: var(--primary);
}
.cd-pip-stage.cd-pip-done {
    background: rgba(52,211,153,0.12);
    color: var(--secondary);
}
.cd-pip-num {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(100,116,139,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.5rem;
    font-weight: 800;
    color: var(--text-muted);
    transition: all 0.4s;
}
.cd-pip-active .cd-pip-num {
    background: var(--primary);
    color: #fff;
}
.cd-pip-done .cd-pip-num {
    background: var(--secondary);
    color: #fff;
}
.cd-pip-arrow {
    font-size: 0.65rem;
    color: var(--text-muted);
    opacity: 0.5;
}

/* Dashboard day tracker */
.cd-dash-day {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
}
.cd-day-label { font-size: 0.6rem; color: var(--text-muted); }
.cd-day-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
    transition: all 0.4s;
}
.cd-day-limit { font-size: 0.6rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.cd-day-bar {
    height: 4px;
    background: rgba(100,116,139,0.15);
    border-radius: 2px;
    overflow: hidden;
}
.cd-day-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: width 0.6s ease;
}

/* Dashboard Log */
.cd-dash-log {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--glass-border);
    max-height: 240px;
    overflow-y: auto;
}
.cd-log-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.cd-log-title i { color: var(--primary); font-size: 0.65rem; }
.cd-log-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.cd-log-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.35rem 0;
    font-size: 0.62rem;
    border-bottom: 1px solid rgba(56,189,248,0.04);
    animation: fadeIn 0.4s ease;
}
.cd-log-time {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
    min-width: 35px;
}
.cd-log-msg { color: var(--text-secondary); line-height: 1.3; }
.cd-log-info .cd-log-msg { color: var(--primary); }
.cd-log-success .cd-log-msg { color: var(--secondary); }
.cd-log-warning .cd-log-msg { color: #fbbf24; }
.cd-log-danger .cd-log-msg { color: #f87171; }

/* Dashboard Orgs */
.cd-dash-orgs {
    padding: 0.85rem 1.25rem;
}
.cd-org-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.cd-org-title i { color: var(--primary); font-size: 0.65rem; }
.cd-org-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.cd-org-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.65rem;
    border-radius: 8px;
    font-size: 0.65rem;
    transition: all 0.3s;
}
.cd-org-pending { background: rgba(100,116,139,0.08); color: var(--text-muted); }
.cd-org-active {
    background: rgba(14,165,233,0.08);
    border: 1px solid rgba(14,165,233,0.2);
    color: var(--primary);
    font-weight: 600;
}

/* --- Step visibility (hidden by default) --- */
.cd-step {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}
.cd-step.cd-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Dashboard always visible when section is in view */
.cd-dashboard.cd-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* --- Result Section --- */
.cd-result {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(139,92,246,0.06));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}
.cd-result-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.cd-result-header i {
    font-size: 1.5rem;
    color: var(--accent);
}
.cd-result-header h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-white);
}
.cd-result-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.cd-res-card {
    text-align: center;
    padding: 1.25rem;
    border-radius: 14px;
    transition: transform 0.3s;
}
.cd-res-card:hover { transform: translateY(-4px); }
.cd-res-blue   { background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.25); }
.cd-res-green  { background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.25); }
.cd-res-purple { background: rgba(139,92,246,0.1); border: 1px solid rgba(139,92,246,0.25); }
.cd-res-gold   { background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.25); }
.cd-res-val {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}
.cd-res-blue .cd-res-val   { color: var(--primary); }
.cd-res-green .cd-res-val  { color: var(--secondary); }
.cd-res-purple .cd-res-val { color: #a78bfa; }
.cd-res-gold .cd-res-val   { color: var(--accent); }
.cd-res-val small {
    font-size: 0.65rem;
    font-weight: 600;
}
.cd-res-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0.3rem 0 0.15rem;
}
.cd-res-sub {
    font-size: 0.6rem;
    color: var(--text-muted);
}
.cd-result-insight {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}
.cd-result-insight i {
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.cd-result-insight p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   H. RESPONSIVE PATCH for new sections
   =================================== */
@media (max-width: 1024px) {
    .risk-visual-grid { grid-template-columns: repeat(2, 1fr); }
    .dashboard-preview-v2 { grid-template-columns: 1fr; }
    .monitor-feature-grid { grid-template-columns: 1fr; }
    .benchmark-source-grid { flex-direction: column; align-items: center; }
    .benchmark-plus { transform: rotate(90deg); }
    .principle-flow { flex-direction: column; }
    .principle-arrow { transform: rotate(90deg); }
    .cm-roles { grid-template-columns: 1fr; }
    .eco-nodes { display: grid; grid-template-columns: repeat(2, 1fr); height: auto; }
    .eco-node { position: static; transform: none; width: auto; }
    .qual-grid { grid-template-columns: 1fr; }
    .api-cards-grid { grid-template-columns: repeat(2, 1fr); }
    /* Ecosystem V2 tablet */
    .eco-v2-middle { flex-direction: column; }
    .eco-v2-connector-h { flex-direction: column; padding: 0.5rem 0; }
    .conn-line-h { width: 2px; height: 16px; background: linear-gradient(to bottom, transparent, var(--primary), transparent); }
    .eco-v2-connector-h i { transform: rotate(90deg); }
    /* Case Study V3 tablet */
    .case-profile-card { flex-direction: column; text-align: center; }
    .case-profile-left { flex-direction: column; text-align: center; }
    .case-profile-right { justify-content: center; flex-wrap: wrap; }
    .ctl-step { grid-template-columns: 90px 36px 1fr; }
    .crd-metrics { grid-template-columns: repeat(2, 1fr); }
    /* Supporters V3 tablet */
    .sp3-overview-banner { flex-direction: column; text-align: center; }
    .sp3-overview-left { flex-direction: column; text-align: center; }
    .sp3-overview-stats { justify-content: center; }
    .sp3-week-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
    .sp3-role-flow { grid-template-columns: 1fr; }
    .sp3-role-connector { flex-direction: row; padding: 0.5rem 0; justify-content: center; }
    .sp3-rc-line { width: 30px; height: 2px; background: linear-gradient(to right, #ec4899, var(--primary)); }
    .sp3-rc-labels { flex-direction: row; gap: 0.75rem; }
    .sp3-impact-grid { grid-template-columns: repeat(2, 1fr); }
    /* Monitoring V3 tablet */
    .mon-intro-banner { flex-direction: column; text-align: center; gap: 1.25rem; }
    .mon-intro-left { flex-direction: column; text-align: center; }
    .mon-kpi-strip { grid-template-columns: repeat(2, 1fr); }
    .dash-v3-grid { grid-template-columns: repeat(2, 1fr); }
    .dw3-delay-item { grid-template-columns: 70px 1fr auto; }
    /* Pages 11-13 V3 tablet */
    .sa3-layer-label { min-width: 140px; font-size: 0.7rem; }
    .rm3-gantt-months { margin-left: 140px; }
    .rm3-phase-info { min-width: 130px; }
    .rm3-phase-detail { margin-left: 140px; }
    .ms3-track { flex-wrap: wrap; gap: 1rem; }
    .ms3-item { flex: 0 0 calc(50% - 0.5rem); }
    .ms3-line { display: none; }
    .to3-grid { grid-template-columns: repeat(3, 1fr); }
    .bg3-total-banner { flex-direction: column; text-align: center; }
    .bg3-total-meta { justify-content: center; }
    /* Executive Summary tablet */
    .es-top-banner { flex-direction: column; text-align: center; gap: 1.5rem; padding: 1.5rem; }
    .es-top-kpis { justify-content: center; flex-wrap: wrap; }
    .es-main-diagram { grid-template-columns: 1fr; gap: 2rem; }
    .es-col-left, .es-col-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .es-hub-diagram { width: 260px; height: 260px; }
    .es-service-pillars { flex-wrap: wrap; justify-content: center; }
    .es-bottom-strip { grid-template-columns: 1fr; gap: 1rem; }
    .es-footer-bar { gap: 1rem; }
    /* COD Demo tablet */
    .cd-scene { grid-template-columns: 1fr; }
    .cd-right-panel { position: relative; top: 0; order: -1; }
    .cd-result-grid { grid-template-columns: repeat(2, 1fr); }
    .cd-monitor-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .risk-visual-grid { grid-template-columns: 1fr; }
    .benchmark-source-grid { flex-direction: column; }
    .benchmark-plus { transform: rotate(90deg); }
    .principle-flow { flex-direction: column; }
    .principle-arrow { transform: rotate(90deg); }
    .cm-roles { grid-template-columns: 1fr; }
    .cod-staff { flex-direction: column; }
    .dashboard-preview-v2 { grid-template-columns: 1fr; }
    .monitor-feature-grid { grid-template-columns: 1fr; }
    .qual-grid { grid-template-columns: 1fr; }
    .budget-notes-grid { grid-template-columns: 1fr; }
    .api-cards-grid { grid-template-columns: 1fr; }
    /* Ecosystem V2 mobile */
    .eco-v2-middle { flex-direction: column; }
    .eco-v2-connector-h { flex-direction: column; padding: 0.5rem 0; }
    .conn-line-h { width: 2px; height: 16px; background: linear-gradient(to bottom, transparent, var(--primary), transparent); }
    .eco-v2-hub-inner { width: 170px; height: 170px; }
    .eco-v2-card { min-width: 160px; }
    /* Case Study V3 mobile */
    .case-profile-card { padding: 1.25rem; }
    .case-profile-right { flex-direction: column; align-items: stretch; }
    .profile-stat { justify-content: center; }
    .ctl-step { grid-template-columns: 1fr; gap: 0.5rem; }
    .ctl-time-col { text-align: left; padding: 0; display: flex; align-items: center; gap: 0.5rem; }
    .ctl-node { display: none; }
    .ctl-card { border-left: 3px solid; margin-bottom: 1rem; }
    .ctl-header { flex-direction: column; text-align: center; padding: 1.25rem; }
    .crd-metrics { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .crd-header { flex-direction: column; text-align: center; gap: 0.5rem; }
    .crd-insight { flex-direction: column; text-align: center; }
    /* Supporters V3 mobile */
    .sp3-overview-banner { padding: 1.25rem; }
    .sp3-overview-stats { flex-direction: column; gap: 0.75rem; }
    .sp3-stat-divider-v { display: none; }
    .sp3-week-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; padding: 1rem; }
    .sp3-day { padding: 0.75rem 0.5rem; }
    .sp3-day-icon { width: 36px; height: 36px; font-size: 0.85rem; }
    .sp3-role-flow { grid-template-columns: 1fr; gap: 1rem; }
    .sp3-role-connector { flex-direction: row; padding: 0.5rem 0; justify-content: center; }
    .sp3-rc-line { width: 30px; height: 2px; }
    .sp3-rc-labels { flex-direction: row; }
    .sp3-impact-grid { grid-template-columns: 1fr; }
    /* Monitoring V3 mobile */
    .mon-intro-banner { padding: 1.25rem; }
    .mon-kpi-strip { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .mkc-value { font-size: 1.1rem; }
    .dash-v3-grid { grid-template-columns: 1fr; }
    .dw3-donut-wrap { flex-direction: column; text-align: center; }
    .dw3-donut-legend { flex-direction: row; gap: 1rem; justify-content: center; }
    .dw3-delay-item { grid-template-columns: 65px 1fr; gap: 0.35rem; }
    .dw3-di-stage { grid-column: span 2; text-align: center; }
    .dw3-contact-item { flex-wrap: wrap; }
    .dw3-ci-actions { margin-left: auto; }
    .alert-levels { grid-template-columns: 1fr; }
    /* Pages 11-13 V3 mobile */
    .sa3-layer { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .sa3-layer-label { min-width: auto; }
    .rm3-gantt-months { display: none; }
    .rm3-phase-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .rm3-phase-info { min-width: auto; }
    .rm3-bar-track { width: 100%; height: 24px; }
    .rm3-phase-detail { margin-left: 0; flex-direction: column; gap: 0.75rem; }
    .ms3-track { flex-direction: column; gap: 1rem; }
    .ms3-item { flex: 1 1 100%; }
    .ms3-line { display: none; }
    .to3-grid { grid-template-columns: repeat(2, 1fr); }
    .bg3-total-banner { padding: 1.25rem; }
    .bg3-total-amount { font-size: 1.3rem; }
    .bg3-total-meta { flex-direction: column; gap: 0.5rem; }
    .bg3-cat-head { flex-wrap: wrap; }
    .bg3-yr-item { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
    .bg3-yr-bar-track { width: 100%; }
    /* Executive Summary mobile */
    .es-top-banner { padding: 1.25rem; }
    .es-top-kpis { gap: 0.5rem; }
    .es-kpi { min-width: 80px; padding: 0.75rem; }
    .es-kpi-val { font-size: 1.2rem; }
    .es-main-diagram { grid-template-columns: 1fr; gap: 1.5rem; }
    .es-col-left, .es-col-right { grid-template-columns: 1fr; }
    .es-hub-diagram { width: 220px; height: 220px; }
    .es-hub-inner { width: 80px; height: 80px; }
    .es-hub-icon { font-size: 1rem; }
    .es-hub-name { font-size: 0.85rem; }
    .es-hn-icon { width: 38px; height: 38px; font-size: 0.85rem; }
    .es-hub-node span { font-size: 0.55rem; }
    .es-conn-top, .es-conn-bottom { height: 28px; }
    .es-conn-right, .es-conn-left { width: 28px; }
    .es-pipe-steps { gap: 0.15rem; }
    .es-ps { padding: 0.25rem 0.45rem; }
    .es-ps-n { width: 16px; height: 16px; font-size: 0.5rem; }
    .es-ps-t { font-size: 0.6rem; }
    .es-ps-arrow { font-size: 0.7rem; }
    .es-service-pillars { flex-direction: column; }
    .es-pillar { flex-direction: row; gap: 0.5rem; text-align: left; }
    .es-pillar i { font-size: 1rem; margin-bottom: 0; }
    .es-bottom-strip { grid-template-columns: 1fr; }
    .es-footer-bar { flex-direction: column; gap: 0.5rem; text-align: center; }
    .es-rm-milestones { flex-wrap: wrap; gap: 0.3rem; }
    /* COD Demo mobile */
    .cd-controls { flex-direction: column; gap: 0.75rem; text-align: center; }
    .cd-scene { grid-template-columns: 1fr; }
    .cd-right-panel { position: relative; top: 0; order: -1; }
    .cd-profile { flex-direction: column; text-align: center; }
    .cd-profile-tags { justify-content: center; }
    .cd-timeline { padding-left: 2rem; }
    .cd-tl-node { left: -2rem; width: 28px; height: 28px; font-size: 0.6rem; }
    .cd-tl-node i { font-size: 0.55rem; }
    .cd-tl-head { flex-wrap: wrap; gap: 0.5rem; padding: 0.75rem 1rem; }
    .cd-tl-body { padding: 0.75rem 1rem; }
    .cd-match-item { flex-wrap: wrap; }
    .cd-match-pct { width: 100%; text-align: center; margin-top: 0.25rem; }
    .cd-monitor-grid { grid-template-columns: repeat(2, 1fr); }
    .cd-emergency-flow { flex-direction: column; align-items: stretch; }
    .cd-emer-arrow { text-align: center; transform: rotate(90deg); }
    .cd-result-grid { grid-template-columns: repeat(2, 1fr); }
    .cd-res-val { font-size: 1.5rem; }
    .cd-result-insight { flex-direction: column; text-align: center; }
    .cd-dash-pipeline { flex-wrap: wrap; gap: 0.25rem; }
    .cd-pip-arrow { display: none; }
    .cd-card-system { flex-direction: column; text-align: center; }
}

/* ===================================
   22. ANIMATIONS
   =================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
.animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.stagger-in > * {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-in.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-in.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-in.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-in.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-in.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-in.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-in.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-in.visible > *:nth-child(8) { transition-delay: 0.4s; }
.stagger-in.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   23. RESPONSIVE — TABLET
   =================================== */
@media (max-width: 1024px) {
    html { font-size: 14px; }
    .content-grid { grid-template-columns: 1fr; }
    .nav-menu { display: none; }
    .nav-toggle { display: block; }
    .phase-content { grid-template-columns: 1fr; }
    .eco-node { position: static; margin: var(--spacing-md) auto; transform: none; }
    .eco-center { position: static; transform: none; margin: var(--spacing-xl) auto; }
    .eco-nodes { display: flex; flex-direction: column; height: auto; gap: var(--spacing-lg); }
    .role-cards { grid-template-columns: 1fr; }
    .service-pillars-grid { grid-template-columns: 1fr; }
    .process-pipeline { flex-direction: column; align-items: center; }
    .process-pipeline::before { display: none; }
    .process-step-card { max-width: 100%; }
    .process-arrow { transform: rotate(90deg); }
    .arch-engine-grid { grid-template-columns: repeat(2, 1fr); }
    .data-sources-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid-8 { grid-template-columns: repeat(2, 1fr); }
    .ai-flow-diagram { flex-direction: column; }
    .ai-flow-arrow { transform: rotate(90deg); padding: 0.5rem; }
    .diff-cards-row { grid-template-columns: repeat(2, 1fr); }
    .diagram-connectors { gap: 3rem; }
    .infra-flow-bar { flex-direction: column; align-items: center; }
    .infra-arrow { transform: rotate(90deg); }
    .pipeline-stages { flex-direction: column; gap: 1rem; }
    .pipeline-arrow { transform: rotate(90deg); }
    .section-title { font-size: 2rem; }
}

/* ===================================
   24. RESPONSIVE — MOBILE
   =================================== */
@media (max-width: 640px) {
    html { font-size: 13px; }
    .cover-title { font-size: 2.2rem; }
    .cover-stats { flex-direction: column; }
    .stat-card { min-width: auto; width: 100%; }
    .features-grid-8 { grid-template-columns: 1fr; }
    .arch-engine-grid { grid-template-columns: 1fr; }
    .data-sources-grid { grid-template-columns: 1fr; }
    .diff-cards-row { grid-template-columns: 1fr; }
    .system-features-bar { flex-direction: column; align-items: center; }
    .arch-menu-row { flex-direction: column; align-items: center; }
    .strategy-container,
    .feature-grid,
    .function-grid,
    .dashboard-grid,
    .outcome-cards,
    .kpi-grid { grid-template-columns: 1fr; }
    .contact-info { flex-direction: column; align-items: flex-start; }
    .model-grid { flex-direction: column; }
    .model-operator { transform: rotate(90deg); }
    .section { padding: 4rem 0; }
    .container { padding: 0 1.25rem; }
    .section-title { font-size: 1.75rem; }
}

/* ===================================
   25. PRINT
   =================================== */
@media print {
    body { background: white; color: #1e293b; }
    .navbar, .progress-bar, .scroll-top { display: none; }
    .section { page-break-inside: avoid; padding: 2rem 0; }
    .card, .card-primary, .card-secondary, .card-accent,
    .pillar-card, .feature-card-v2, .diff-card {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        backdrop-filter: none;
        color: #1e293b;
    }
    .section-title, .cover-title, h3, h4, h5 { color: #1e293b; }
    p, li, span { color: #475569; }
}
