ELEVATE

6 Core Sprints to ELEVATE Your Impact

<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: #2c3e50;
            background: linear-gradient(to bottom, #f0f4f8 0%, #e8ecf1 100%);
            line-height: 1.6;
        }
        
        header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 3rem 1rem;
            text-align: center;
            border-bottom: 6px solid #764ba2;
        }
        
        header h1 {
            font-size: clamp(2rem, 6vw, 3rem);
            margin-bottom: 0.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        
        header p {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        nav {
            background-color: #2c3e50;
            padding: 0.75rem 1rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        
        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 0.6rem 1rem;
            border-radius: 4px;
            transition: all 0.2s ease;
        }
        
        nav a:hover, nav a:focus {
            background-color: #667eea;
            outline: 2px solid #fff;
            outline-offset: -2px;
        }
        
        main {
            max-width: 900px;
            margin: 0 auto;
            padding: 3rem 1rem;
        }
        
        .timeline {
            position: relative;
            padding: 2rem 0;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #667eea, #764ba2);
        }
        
        .sprint-item {
            margin-bottom: 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            position: relative;
        }
        
        .sprint-item:nth-child(even) {
            direction: rtl;
        }
        
        .sprint-item:nth-child(even) > * {
            direction: ltr;
        }
        
        .sprint-content {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
            transition: all 0.3s ease;
        }
        
        .sprint-content:hover {
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
            transform: translateY(-2px);
        }
        
        .sprint-number {
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-radius: 50%;
            font-size: 1.8rem;
            font-weight: 800;
            border: 4px solid #f0f4f8;
            z-index: 10;
        }
        
        .sprint-content h2 {
            font-size: 1.3rem;
            color: #667eea;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        
        .sprint-content a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s ease;
            border-bottom: 2px solid transparent;
        }
        
        .sprint-content a:hover, .sprint-content a:focus {
            color: #764ba2;
            border-bottom-color: #764ba2;
            outline: 2px solid #764ba2;
            outline-offset: 2px;
        }
        
        .sprint-description {
            color: #555;
            font-size: 0.95rem;
            margin-top: 1rem;
            line-height: 1.7;
        }
        
        .cta-button {
            display: inline-block;
            background-color: #667eea;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            margin-top: 1rem;
            font-weight: 600;
            transition: all 0.2s ease;
            border: 2px solid transparent;
        }
        
        .cta-button:hover, .cta-button:focus {
            background-color: #764ba2;
            outline: 2px solid #764ba2;
            outline-offset: 2px;
        }
        
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 2.5rem 1rem;
            text-align: center;
            margin-top: 4rem;
            font-size: 0.9rem;
        }
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        footer a {
            color: #667eea;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        footer a:hover, footer a:focus {
            color: #fff;
            text-decoration: underline;
            outline: 2px solid #667eea;
        }
        
        @media (max-width: 768px) {
            .timeline::before {
                left: 1.5rem;
            }
            
            .sprint-item {
                grid-template-columns: 1fr;
                gap: 0;
                margin-left: 80px;
            }
            
            .sprint-item:nth-child(even) {
                direction: ltr;
            }
            
            .sprint-number {
                left: 1.5rem;
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            
            header h1 {
                font-size: 2rem;
            }
            
            header p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            main {
                padding: 1.5rem 0.75rem;
            }
            
            .sprint-content {
                padding: 1.5rem;
            }
            
            .sprint-item {
                margin-left: 50px;
                margin-bottom: 2rem;
            }
            
            .timeline {
                padding: 1rem 0;
            }
            
            .sprint-number {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            .sprint-content,
            .cta-button,
            footer a {
                transition: none;
            }
        }
        
        @media (prefers-color-scheme: dark) {
            body {
                background: linear-gradient(to bottom, #1a1a1a 0%, #262626 100%);
                color: #e0e0e0;
            }
            
            .sprint-content {
                background: #2a2a2a;
                color: #e0e0e0;
                box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
            }
            
            .sprint-content h2 {
                color: #a8c5ff;
            }
            
            .sprint-description {
                color: #b0b0b0;
            }
            
            .timeline::before {
                background: linear-gradient(to bottom, #a8c5ff, #c4a8ff);
            }
        }
    </style>

Master Your Meetings

Turn your meetings from time-sinks to productivity engines. This program equips you with blueprints and tools to make every meeting count. You’ll design sessions that crack problems and spark ideas.

Learn More
3