Todd Lohenry profile

Interactive Report: The Todd Lohenry Profile https://cdn.tailwindcss.com https://cdn.jsdelivr.net/npm/chart.js Goal: Show change/comparison -> Viz: Interactive Timeline (HTML/CSS/JS) -> Interaction: Click nodes to reveal details on the “Linchpin” vs. “Choose Yourself” roles. Justification: More engaging and narrative-driven than a static table. – Elevation Workflow -> Goal: Organize/explain a process -> Viz: Interactive Circular Diagram (HTML/CSS/JS) -> Interaction: Click steps to display details. Justification: Visually represents the cyclical feedback loop described in the report. Library: Custom JS. – Brand Evolution -> Goal: Show change over time -> Viz: Bar Chart (Chart.js) -> Interaction: Click bars to see site details. Justification: Quickly communicates the strategic shift in his online presence. Library: Chart.js. – Philosophies -> Goal: Inform/connect concepts -> Viz: Interactive Cards (HTML/CSS/JS) -> Interaction: Click to reveal text. Justification: Cleanly presents distinct but related ideas. –> body { font-family: ‘Inter’, sans-serif; background-color: #f8fafc; /* slate-50 */ color: #1e293b; /* slate-800 */ } .nav-link { transition: color 0.3s, border-color 0.3s; } .nav-link.active, .nav-link:hover { color: #0d9488; /* teal-600 */ border-bottom-color: #0d9488; } .workflow-circle { position: relative; width: 400px; height: 400px; } .workflow-step { position: absolute; width: 100px; height: 100px; transition: transform 0.3s, background-color 0.3s, color 0.3s; cursor: pointer; } .workflow-step.active { transform: scale(1.1); background-color: #0d9488; /* teal-600 */ color: white; z-index: 10; } .timeline-item::before { content: ”; position: absolute; left: -2.75rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; border-radius: 9999px; background-color: #cbd5e1; /* slate-300 */ border: 3px solid #f8fafc; /* slate-50 */ } .timeline-item.active::before { background-color: #0d9488; /* teal-600 */ } .chart-container { position: relative; width: 100%; max-width: 800px; margin-left: auto; margin-right: auto; height: 300px; max-height: 400px; } @media (min-width: 768px) { .chart-container { height: 400px; } }

A Study in Modern Professional Identity

The Linchpin & The Entrepreneur

This is an interactive exploration of Todd Lohenry’s career, a practical application of the dichotomy he teaches: the indispensable “Linchpin” within a corporation and the self-directed “Choose Yourself” professional. His journey is a case study in building an authentic, non-linear career.

A Multi-Industry Trajectory

Lohenry’s career is not a straight line but a deliberate accumulation of skills across diverse sectors. Each role can be seen through the lens of his “Linchpin” vs. “Choose Yourself” philosophy. Click on each phase of his journey to see how it fits into this narrative.

The Elevation Workflow

At the core of Lohenry’s teaching is the “Elevation Workflow,” a 9-step cyclical process for transforming thinkers into recognized thought leaders. It’s a self-perpetuating engine for building authority. Interact with the diagram to deconstruct the framework.

Digital Architecture & Brand Evolution

Lohenry’s online presence is a living portfolio of his teachings. Its evolution from a B2B focus to a personal and philosophical brand illustrates a sophisticated strategic pivot from the tactical “how” to the philosophical “why.”

Click on the bars to learn more about each phase of his brand.

The Philosophy Behind the Brand

The strength of the brand lies in the integration of personal philosophies. These aren’t afterthoughts; they are the foundation of his authority, creating a coherent and authentic professional persona.

authentically

Authenticity

Grounded in the phrase “*Ego sum qui sum*” (“I am what I am”), this principle rejects definitions based on past roles, promoting a present-moment identity.

wholeheartedly

Wholeheartedness

A focus on vulnerability, courage, and self-compassion, showing a consistent interest in emotional wellness as a key to professional life.

wisely

Practical Wisdom

Integrating Stoicism and Buddhism to offer guidance on resilience and inner peace, moving beyond mere marketing tactics.

A Synthesis

Todd Lohenry has constructed a durable online identity by codifying his knowledge, transparently applying it to his own career, and grounding his brand in a consistent philosophy. His journey serves as an insightful model for building a meaningful, resilient career in the 21st century.

document.addEventListener(‘DOMContentLoaded’, function() { const journeyData = [ { id: ‘aviation’, title: ‘Aviation: LoPresti Aviation’, timeframe: ‘c. 2006-2007’, archetype: ‘Linchpin’, archetypeColor: ‘bg-blue-100 text-blue-800’, content: `As Business Development Manager, Lohenry operated as a classic “Linchpin.” He was an indispensable internal expert responsible for B2B marketing of high-performance aircraft modifications. This role required deep technical knowledge and the ability to communicate complex benefits to a niche, high-value audience, embedding him within the corporate structure.` }, { id: ‘wellness’, title: ‘Corporate Wellness’, timeframe: ‘Undisclosed’, archetype: ‘Linchpin’, archetypeColor: ‘bg-blue-100 text-blue-800’, content: `Serving as Director of Marketing and Technology for a major wellness brand, this was another key “Linchpin” role. It involved senior responsibility over both marketing strategy and the tech infrastructure, placing him at the core of the company’s operations and growth.` }, { id: ‘consulting’, title: ‘Consulting & Academia’, timeframe: ‘c. 2010-Present’, archetype: ‘Choose Yourself’, archetypeColor: ‘bg-green-100 text-green-800’, content: `This phase, encompassing his work with e1evation.com, toddlohenry.com, and as a college instructor, embodies the “Choose Yourself” model. He forged his own path as a solopreneur and educator, building a personal brand and business around his proprietary “Elevation Workflow.”` }, { id: ‘energy’, title: ‘Energy: CMS Energy’, timeframe: ‘c. 2021’, archetype: ‘Linchpin’, archetypeColor: ‘bg-blue-100 text-blue-800’, content: `His role as an Energy Advisor represents a deliberate return to the “Linchpin” archetype. After a period of entrepreneurship, he re-integrated into a corporate structure, applying his principles from within an organization. This demonstrates his philosophy of a non-linear career, moving fluidly between the two models.` } ]; const timelineNav = document.getElementById(‘timeline-nav’); const timelineContent = document.getElementById(‘timeline-content’); journeyData.forEach((item, index) => { const navItem = document.createElement(‘div’); navItem.className = `timeline-item relative pl-12 py-3 border-l-2 border-slate-200 cursor-pointer ${index === 0 ? ‘active’ : ”}`; navItem.dataset.id = item.id; navItem.innerHTML = `

${item.title}

${item.timeframe}

`; timelineNav.appendChild(navItem); }); function updateTimelineContent(id) { const item = journeyData.find(d => d.id === id); if (item) { timelineContent.innerHTML = ` ${item.archetype} Archetype

${item.title}

${item.timeframe}

${item.content}

`; document.querySelectorAll(‘.timeline-item’).forEach(el => { el.classList.toggle(‘active’, el.dataset.id === id); }); } } timelineNav.addEventListener(‘click’, (e) => { const navItem = e.target.closest(‘.timeline-item’); if (navItem) { updateTimelineContent(navItem.dataset.id); } }); updateTimelineContent(journeyData[0].id); const workflowData = [ { step: ‘Contemplate’, angle: 0, content: ‘Objective: Understand audience language and culture.
Tools: Google Search, Trends, Keyword Planner.
Concept: Market Research & SEO.’ }, { step: ‘Consume’, angle: 40, content: ‘Objective: Absorb the best information in a niche.
Tools: RSS Readers (Feedly, Inoreader).
Concept: Continuous Learning.’ }, { step: ‘Curate’, angle: 80, content: ‘Objective: Share valuable content with your audience.
Tools: Social Media, IFTTT for automation.
Concept: Value Provision.’ }, { step: ‘Create’, angle: 120, content: ‘Objective: Produce original, authoritative content.
Tools: Self-hosted WordPress.
Concept: Establishing Expertise.’ }, { step: ‘Collect’, angle: 160, content: ‘Objective: Aggregate all content to showcase expertise.
Tools: Rebel Mouse.
Concept: Building a Portfolio.’ }, { step: ‘Connect’, angle: 200, content: ‘Objective: Engage with like-minded people online.
Tools: Twitter Chats, Social Networks.
Concept: Networking.’ }, { step: ‘Converse’, angle: 240, content: ‘Objective: Deepen connections into relationships.
Tools: Online/Offline conversations.
Concept: Relationship Building.’ }, { step: ‘Convert’, angle: 280, content: ‘Objective: Prompt audience to take a desired action.
Tools: Strong Calls to Action (CTAs).
Concept: Conversion Funnels.’ }, { step: ‘Community’, angle: 320, content: ‘Objective: Foster a dedicated space for your audience.
Tools: Facebook Groups.
Concept: Brand Loyalty.’ }, ]; const workflowDiagram = document.querySelector(‘.workflow-circle’); const workflowContent = document.getElementById(‘workflow-content’); const radius = 150; workflowData.forEach((item, index) => { const angleRad = (item.angle – 90) * (Math.PI / 180); const x = radius + radius * Math.cos(angleRad) – 50; const y = radius + radius * Math.sin(angleRad) – 50; const stepEl = document.createElement(‘div’); stepEl.className = `workflow-step flex items-center justify-center p-2 text-center rounded-full bg-white shadow-md border border-slate-200 ${index === 0 ? ‘active’ : ”}`; stepEl.style.left = `${x}px`; stepEl.style.top = `${y}px`; stepEl.dataset.index = index; stepEl.innerHTML = `${item.step}`; workflowDiagram.appendChild(stepEl); }); function updateWorkflowContent(index) { const item = workflowData[index]; if (item) { workflowContent.innerHTML = `

${index + 1}. ${item.step}

${item.content}

${index === 8 ? ‘

The cycle repeats: Community engagement provides new insights that feed back into the “Contemplate” step.

‘ : ”} `; document.querySelectorAll(‘.workflow-step’).forEach(el => { el.classList.toggle(‘active’, parseInt(el.dataset.index) === index); }); } } workflowDiagram.addEventListener(‘click’, (e) => { const stepEl = e.target.closest(‘.workflow-step’); if (stepEl) { updateWorkflowContent(parseInt(stepEl.dataset.index)); } }); updateWorkflowContent(0); const brandCtx = document.getElementById(‘brandEvolutionChart’).getContext(‘2d’); const brandChart = new Chart(brandCtx, { type: ‘bar’, data: { labels: [‘e1evation.com’, ‘toddlohenry.com’, ‘brightshinyobjects.net’], datasets: [{ label: ‘Brand Focus’, data: [1, 1, 1], backgroundColor: [‘#64748b’, ‘#334155’, ‘#0d9488’], borderColor: [‘#64748b’, ‘#334155’, ‘#0d9488’], borderWidth: 1 }] }, options: { indexAxis: ‘y’, responsive: true, maintainAspectRatio: false, plugins: { legend: { display: false }, tooltip: { enabled: false } }, scales: { x: { display: false, max: 1 }, y: { grid: { display: false }, ticks: { font: { size: 14, weight: ‘500’ } } } } } }); const brandContextData = { 0: ‘e1evation.com (c. 2010-2013): A corporate, B2B focus on educating and equipping thought leaders with practical business and WordPress insights.’, 1: ‘toddlohenry.com (c. 2013-Present): A strategic shift to a personal brand, centering his own name and detailing the “Elevation Workflow” through podcasts and blog posts.’, 2: ‘brightshinyobjects.net (Current): A further evolution towards a philosophical, lifestyle brand focusing on wisdom, self-care, and personal insight over business tactics.’ }; document.getElementById(‘brandEvolutionChart’).onclick = (evt) => { const points = brandChart.getElementsAtEventForMode(evt, ‘nearest’, { intersect: true }, true); if (points.length) { const firstPoint = points[0]; const label = brandChart.data.labels[firstPoint.index]; const contextText = brandContextData[firstPoint.index]; document.getElementById(‘chart-context’).innerHTML = contextText; } }; const navLinks = document.querySelectorAll(‘.nav-link’); const sections = document.querySelectorAll(‘main section’); window.addEventListener(‘scroll’, () => { let current = ”; sections.forEach(section => { const sectionTop = section.offsetTop; if (pageYOffset >= sectionTop – 80) { current = section.getAttribute(‘id’); } }); navLinks.forEach(link => { link.classList.remove(‘active’); if (link.getAttribute(‘href’).substring(1) === current) { link.classList.add(‘active’); } }); }); });

Start a Blog at WordPress.com.

Up ↑