<!DOCTYPE html>
<html lang="en" class="is-color-default">

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Anthony Citrano | Story. Strategy. Scale.</title>

    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="/assets/built/screen.css?v=9a46108dd1">
    <script>
        // Function to set the theme
        function setTheme(theme) {
            document.documentElement.setAttribute('data-theme', theme);
            localStorage.setItem('theme', theme);
            updateThemeToggleIcon(theme);
        }

        // Function to get the user's color scheme preference
        function getColorScheme() {
            return window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
        }

        // Function to update theme toggle icon
        function updateThemeToggleIcon(theme) {
            const toggle = document.querySelector('.gh-theme-toggle');
            if (toggle) {
                toggle.setAttribute('data-theme', theme);
            }
        }

        // Function to toggle theme
        function toggleTheme() {
            const currentTheme = document.documentElement.getAttribute('data-theme');
            const newTheme = currentTheme === 'dark' ? 'light' : 'dark';
            setTheme(newTheme);
        }

        // Get the theme setting from Ghost
        var themeSetting = 'user';
        var savedTheme = localStorage.getItem('theme');

        // Initialize theme based on settings
        if (themeSetting === 'user') {
            // Use saved preference if available, otherwise system preference
            if (savedTheme) {
                setTheme(savedTheme);
            } else {
                setTheme(getColorScheme());
            }
        } else if (themeSetting === 'light') {
            setTheme('light');
        } else if (themeSetting === 'dark') {
            setTheme('dark');
        } else if (themeSetting === 'system') {
            setTheme(getColorScheme());
        }

        // Add click handler to theme toggle
        document.addEventListener('DOMContentLoaded', function() {
            const themeToggle = document.querySelector('.gh-theme-toggle');
            if (themeToggle) {
                themeToggle.addEventListener('click', function() {
                    if (themeSetting === 'user') {
                        toggleTheme();
                    }
                });
            }
        });

        // Listen for changes in system color scheme
        if (themeSetting === 'system') {
            window.matchMedia('(prefers-color-scheme: dark)').addListener((e) => {
                setTheme(e.matches ? 'dark' : 'light');
            });
        }
    </script>
    <meta name="description" content="The online home of Anthony Citrano - 3x founder, executive operator, and strategic communicator in Los Angeles.">
    <link rel="icon" href="https://citrano.com/content/images/size/w256h256/2026/02/anthony-citrano-favicon-darkmode-1.png" type="image/png">
    <link rel="canonical" href="https://citrano.com/">
    <meta name="referrer" content="origin-when-cross-origin">
    
    <meta property="og:site_name" content="Anthony Citrano">
    <meta property="og:type" content="website">
    <meta property="og:title" content="Anthony Citrano">
    <meta property="og:description" content="The online home of Anthony Citrano - 3x founder, executive operator, and strategic communicator in Los Angeles.">
    <meta property="og:url" content="https://citrano.com/">
    <meta property="og:image" content="https://citrano.com/content/images/size/w1200/2026/02/anthony-citrano-2026-sq.png">
    <meta name="twitter:card" content="summary_large_image">
    <meta name="twitter:title" content="Anthony Citrano">
    <meta name="twitter:description" content="The online home of Anthony Citrano - 3x founder, executive operator, and strategic communicator in Los Angeles.">
    <meta name="twitter:url" content="https://citrano.com/">
    <meta name="twitter:image" content="https://citrano.com/content/images/size/w1200/2026/02/anthony-citrano-2026-sq.png">
    <meta property="og:image:width" content="1200">
    <meta property="og:image:height" content="1304">
    
    <script type="application/ld+json">
{
    "@context": "https://schema.org",
    "@type": "WebSite",
    "publisher": {
        "@type": "Organization",
        "name": "Anthony Citrano",
        "url": "https://citrano.com/",
        "logo": {
            "@type": "ImageObject",
            "url": "https://citrano.com/content/images/size/w256h256/2026/02/anthony-citrano-favicon-darkmode-1.png",
            "width": 60,
            "height": 60
        }
    },
    "url": "https://citrano.com/",
    "name": "Anthony Citrano",
    "image": {
        "@type": "ImageObject",
        "url": "https://citrano.com/content/images/size/w1200/2026/02/anthony-citrano-2026-sq.png",
        "width": 1200,
        "height": 1304
    },
    "mainEntityOfPage": "https://citrano.com/",
    "description": "The online home of Anthony Citrano - 3x founder, executive operator, and strategic communicator in Los Angeles."
}
    </script>

    <meta name="generator" content="Ghost 6.44">
    <link rel="alternate" type="application/rss+xml" title="Anthony Citrano" href="https://citrano.com/rss/">
    <script defer src="https://cdn.jsdelivr.net/ghost/portal@~2.68/umd/portal.min.js" data-i18n="true" data-ghost="https://citrano.com/" data-key="26950a8fecf6bc9a277cfb0f2f" data-api="https://citrano.com/ghost/api/content/" data-locale="en" crossorigin="anonymous"></script><style id="gh-members-styles">.gh-post-upgrade-cta-content,
.gh-post-upgrade-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
    width: 100%;
    color: #ffffff;
    font-size: 16px;
}

.gh-post-upgrade-cta-content {
    border-radius: 8px;
    padding: 40px 4vw;
}

.gh-post-upgrade-cta h2 {
    color: #ffffff;
    font-size: 28px;
    letter-spacing: -0.2px;
    margin: 0;
    padding: 0;
}

.gh-post-upgrade-cta p {
    margin: 20px 0 0;
    padding: 0;
}

.gh-post-upgrade-cta small {
    font-size: 16px;
    letter-spacing: -0.2px;
}

.gh-post-upgrade-cta a {
    color: #ffffff;
    cursor: pointer;
    font-weight: 500;
    box-shadow: none;
    text-decoration: underline;
}

.gh-post-upgrade-cta a:hover {
    color: #ffffff;
    opacity: 0.8;
    box-shadow: none;
    text-decoration: underline;
}

.gh-post-upgrade-cta a.gh-btn {
    display: block;
    background: #ffffff;
    text-decoration: none;
    margin: 28px 0 0;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
}

.gh-post-upgrade-cta a.gh-btn:hover {
    opacity: 0.92;
}</style>
    <script defer src="https://cdn.jsdelivr.net/ghost/sodo-search@~1.8/umd/sodo-search.min.js" data-key="26950a8fecf6bc9a277cfb0f2f" data-styles="https://cdn.jsdelivr.net/ghost/sodo-search@~1.8/umd/main.css" data-sodo-search="https://citrano.com/" data-locale="en" crossorigin="anonymous"></script>
    
    <link href="https://citrano.com/webmentions/receive/" rel="webmention">
    <script defer src="/public/cards.min.js?v=9a46108dd1"></script>
    <link rel="stylesheet" type="text/css" href="/public/cards.min.css?v=9a46108dd1">
    <script defer src="/public/member-attribution.min.js?v=9a46108dd1"></script>
    <script defer src="/public/ghost-stats.min.js?v=9a46108dd1" data-stringify-payload="false" data-datasource="analytics_events" data-storage="localStorage" data-host="https://citrano.com/.ghost/analytics/api/v1/page_hit"  tb_site_uuid="fc840050-123e-406b-b11f-0c281001e1b0" tb_post_uuid="undefined" tb_post_type="null" tb_member_uuid="undefined" tb_member_status="undefined"></script><style>:root {--ghost-accent-color: #1470AF;}</style>
    <script>
  window.dataLayer = window.dataLayer || [];
  function gtag() { dataLayer.push(arguments); }
  gtag('consent', 'default', {
    analytics_storage: 'granted',
    ad_storage: 'denied',
    ad_user_data: 'denied',
    ad_personalization: 'denied'
  });
</script>

<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PWZDDSJQ4X"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());
  gtag('config', 'G-PWZDDSJQ4X');
</script>

<!-- PostHog -->
<script>
    !function(t,e){var o,n,p,r;e.__SV||(window.posthog && window.posthog.__loaded)||(window.posthog=e,e._i=[],e.init=function(i,s,a){function g(t,e){var o=e.split(".");2==o.length&&(t=t[o[0]],e=o[1]),t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}}(p=t.createElement("script")).type="text/javascript",p.crossOrigin="anonymous",p.async=!0,p.src=s.api_host.replace(".i.posthog.com","-assets.i.posthog.com")+"/static/array.js",(r=t.getElementsByTagName("script")[0]).parentNode.insertBefore(p,r);var u=e;for(void 0!==a?u=e[a]=[]:a="posthog",u.people=u.people||[],u.toString=function(t){var e="posthog";return"posthog"!==a&&(e+="."+a),t||(e+=" (stub)"),e},u.people.toString=function(){return u.toString(1)+".people (stub)"},o="Mi Ri init Vi Gi Rr Wi Ji Bi capture calculateEventProperties tn register register_once register_for_session unregister unregister_for_session an getFeatureFlag getFeatureFlagPayload getFeatureFlagResult isFeatureEnabled reloadFeatureFlags updateFlags updateEarlyAccessFeatureEnrollment getEarlyAccessFeatures on onFeatureFlags onSurveysLoaded onSessionId getSurveys getActiveMatchingSurveys renderSurvey displaySurvey cancelPendingSurvey canRenderSurvey canRenderSurveyAsync un identify setPersonProperties group resetGroups setPersonPropertiesForFlags resetPersonPropertiesForFlags setGroupPropertiesForFlags resetGroupPropertiesForFlags reset setIdentity clearIdentity get_distinct_id getGroups get_session_id get_session_replay_url alias set_config startSessionRecording stopSessionRecording sessionRecordingStarted captureException addExceptionStep captureLog startExceptionAutocapture stopExceptionAutocapture loadToolbar get_property getSessionProperty nn Xi createPersonProfile setInternalOrTestUser sn Hi cn opt_in_capturing opt_out_capturing has_opted_in_capturing has_opted_out_capturing get_explicit_consent_status is_capturing clear_opt_in_out_capturing Ki debug Lr rn getPageViewId captureTraceFeedback captureTraceMetric Di".split(" "),n=0;n<o.length;n++)g(u,o[n]);e._i.push([i,s,a])},e.__SV=1)}(document,window.posthog||[]);
    posthog.init('phc_hP3t22KmqZ0gvTd1KPBd9KjWtBgeJU3dzmreqmY6uuQ', {
        api_host: 'https://v.citrano.com', // managed reverse proxy domain
        ui_host: 'https://us.posthog.com', // necessary for proxy, so links point back to PostHog properly
        defaults: '2026-01-30',
        person_profiles: 'always', 
    })
</script>
<!-- End PostHog -->

<!-- Cloudflare Turnstile -->
<script src="https://challenges.cloudflare.com/turnstile/v0/api.js" async defer></script>
<link rel="preconnect" href="https://challenges.cloudflare.com">
<!-- End Cloudflare Turnstile -->

<style>
.sidebar-tags {
  display: none;
}
.footer-signature {
  display: none;
}
.subscription-sidebar { 
  display: none !important; 
}
.feed-section { 
  grid-template-columns: 1fr !important; 
}
nav.load-more:empty { 
  display: none !important; 
}
.gh-head-actions .gh-button,
.gh-head-actions [data-portal] {
  display: none;
}
</style>
    <link rel="preconnect" href="https://fonts.bunny.net"><link rel="stylesheet" href="https://fonts.bunny.net/css?family=space-grotesk:700|merriweather:300,700"><style>:root {--gh-font-heading: Space Grotesk;--gh-font-body: Merriweather;}</style>
</head>

<body class="home-template gh-font-heading-space-grotesk gh-font-body-merriweather is-head-left-logo">
<div class="site">
    <header id="gh-head" class="gh-head gh-outer">
        <div class="gh-head-inner container ">
            <div class="gh-head-brand">
                <div class="gh-head-brand-wrapper">
                    <a class="gh-head-logo" href="https://citrano.com">
                            Anthony Citrano
                    </a>
                </div>
                <button class="gh-search gh-icon-btn" aria-label="Search this site" data-ghost-search><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"/>
    <path d="m21 21-4.35-4.35"/>
</svg></button>
                <button class="gh-burger"></button>
            </div>

            <nav class="gh-head-menu">
                    <ul class="nav-new">
            <li class="nav-about">
                <a href="https://citrano.com/about/">
                    About
                </a>
            </li>
            <li class="nav-contact">
                <a href="https://citrano.com/contact/">
                    Contact
                </a>
            </li>
            <li class="nav-engagements">
                <a href="https://citrano.com/engagements/">
                    Engagements
                </a>
            </li>
    </ul>


            </nav>

            <div class="gh-head-actions">
                        <button class="gh-theme-toggle gh-icon-btn visible-desktop" aria-label="Toggle theme">
                            <div class="theme-toggle-icon">
                                <div class="moon-or-sun">
                                    <div class="moon-mask"></div>
                                </div>
                            </div>
                        </button>
                    <button class="gh-search gh-icon-btn" aria-label="Search this site" data-ghost-search><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"/>
    <path d="m21 21-4.35-4.35"/>
</svg></button>
                    <div class="gh-head-members radius-rounded">
                                <a class="gh-head-link" href="#/portal/signin" data-portal="signin">Sign in</a>
                                <a class="gh-head-btn gh-btn gh-primary-btn" href="#/portal/signup" data-portal="signup">Subscribe</a>
                    </div>
            </div>
        </div>
    </header>

    <div class="site-content">
        
<div class="content-area">
    <main class="site-main">

                    <div class='post tag-hash-hero tag-hash-shadow hero-wrapper container '>
                        <div class='hero-grid is-hero-image-right radius-rounded'>
                                    <figure class="hero-image">
                                        <img 
                                            srcset="/content/images/size/w400/2026/02/anthony-citrano-2026-sq-1.png 400w,
/content/images/size/w750/2026/02/anthony-citrano-2026-sq-1.png 750w,
/content/images/size/w960/2026/02/anthony-citrano-2026-sq-1.png 960w,
/content/images/size/w1140/2026/02/anthony-citrano-2026-sq-1.png 1140w" 
                                            sizes="(min-width: 1023px) 920px, calc(90vw)" 
                                            src="/content/images/size/w960/2026/02/anthony-citrano-2026-sq-1.png" 
                                            alt="home">
                                    </figure>

                            <div class='hero-content '>
                                <section class='gh-content'>
                                    
                                    <h1 id="story-strategy-scale">Story. Strategy. Scale.</h1><hr><p>A leader shaped by decades of building and operating companies. Also a good cook, a decent photographer, and a loyal friend.</p>
                                    


                                </section>
                            </div>
                        </div>
                    </div>



        <section class="container ">
            <header class="feed-header">
                    <div class="feed-header-wrapper">
                        <h2 class="feed-header-title title-small">Latest Articles</h2>
                    </div>
            </header>
            
            <div class="feed-section">
                <div class="feed-content">
                    <div class="post-feed expanded right-thumbnail gh-feed">
                                <article class="feed post tag-communications tag-loyalty" data-month="February 2026">
    <div class="feed-calendar">
        <div class="feed-calendar-month">
            Feb 17
        </div>
    </div>
                <div class="feed-image u-placeholder square radius-rounded">
                        <img class="u-object-fit"
                            src="/content/images/size/w400/2026/02/principles-principals-communications-ryan-ancill-2.jpg"
                            alt="Principal vs. Principle: On Loyalty and Lawn Chairs"
                            loading="lazy"
                        >
                </div>
    <div class="feed-wrapper">
        <h2 class="feed-title">Principal vs. Principle: On Loyalty and Lawn Chairs</h2>
            <div class="feed-excerpt">Great leaders recruit for candor. Great advisors deliver it, even (especially) when it&#39;s difficult. Loyalty in communications isn&#39;t agreement; it&#39;s the courage to say what needs to be said.</div>
        <div class="feed-right">
            <time class="feed-date" datetime="2026-02-17">
                Feb 17, 2026
            </time>
            <div class="feed-visibility feed-visibility-public">
                <svg viewBox="0 0 20 20" class="icon">
    <path d="M12.4 12.77l-1.81 4.99a.63.63 0 0 1-1.18 0l-1.8-4.99a.63.63 0 0 0-.38-.37l-4.99-1.81a.62.62 0 0 1 0-1.18l4.99-1.8a.63.63 0 0 0 .37-.38l1.81-4.99a.63.63 0 0 1 1.18 0l1.8 4.99a.63.63 0 0 0 .38.37l4.99 1.81a.63.63 0 0 1 0 1.18l-4.99 1.8a.63.63 0 0 0-.37.38z" fill="#FFC017">

    </path>
</svg>            </div>
            <div class="feed-length">
                 6 min read
            </div>
            <div class="feed-icon">
                <svg class="icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
    <path d="M11.453 22.107L17.56 16l-6.107-6.12L13.333 8l8 8-8 8-1.88-1.893z"></path>
</svg>            </div>
        </div>
    </div>
    <a class="u-permalink" href="/principal-vs-principle-loyalty-communications/" aria-label="Principal vs. Principle: On Loyalty and Lawn Chairs"></a>
</article>                                <article class="feed post" data-month="February 2026">
    <div class="feed-calendar">
        <div class="feed-calendar-month">
            Feb 02
        </div>
    </div>
                <div class="feed-image u-placeholder square radius-rounded">
                        <img class="u-object-fit"
                            src="/content/images/size/w400/2026/02/principled-transparency.jpg"
                            alt="Never Lie, Always Comment"
                            loading="lazy"
                        >
                </div>
    <div class="feed-wrapper">
        <h2 class="feed-title">Never Lie, Always Comment</h2>
            <div class="feed-excerpt">Organizations don&#39;t have to choose between honesty and confidentiality. Principled transparency maintains boundaries while simultaneously building trust and brand equity.</div>
        <div class="feed-right">
            <time class="feed-date" datetime="2026-02-02">
                Feb 2, 2026
            </time>
            <div class="feed-visibility feed-visibility-public">
                <svg viewBox="0 0 20 20" class="icon">
    <path d="M12.4 12.77l-1.81 4.99a.63.63 0 0 1-1.18 0l-1.8-4.99a.63.63 0 0 0-.38-.37l-4.99-1.81a.62.62 0 0 1 0-1.18l4.99-1.8a.63.63 0 0 0 .37-.38l1.81-4.99a.63.63 0 0 1 1.18 0l1.8 4.99a.63.63 0 0 0 .38.37l4.99 1.81a.63.63 0 0 1 0 1.18l-4.99 1.8a.63.63 0 0 0-.37.38z" fill="#FFC017">

    </path>
</svg>            </div>
            <div class="feed-length">
                 4 min read
            </div>
            <div class="feed-icon">
                <svg class="icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
    <path d="M11.453 22.107L17.56 16l-6.107-6.12L13.333 8l8 8-8 8-1.88-1.893z"></path>
</svg>            </div>
        </div>
    </div>
    <a class="u-permalink" href="/never-lie-always-comment/" aria-label="Never Lie, Always Comment"></a>
</article>                                <article class="feed post" data-month="January 2026">
    <div class="feed-calendar">
        <div class="feed-calendar-month">
            Jan 27
        </div>
    </div>
                <div class="feed-image u-placeholder square radius-rounded">
                        <img class="u-object-fit"
                            src="/content/images/size/w400/2026/02/eric-karim-cornelis-unsplash-1.jpg"
                            alt="Putting Your Company in a Box"
                            loading="lazy"
                        >
                </div>
    <div class="feed-wrapper">
        <h2 class="feed-title">Putting Your Company in a Box</h2>
            <div class="feed-excerpt">People put everything into boxes - you can&#39;t control that. But you can control which box your company is in and how you talk about it.</div>
        <div class="feed-right">
            <time class="feed-date" datetime="2026-01-27">
                Jan 27, 2026
            </time>
            <div class="feed-visibility feed-visibility-public">
                <svg viewBox="0 0 20 20" class="icon">
    <path d="M12.4 12.77l-1.81 4.99a.63.63 0 0 1-1.18 0l-1.8-4.99a.63.63 0 0 0-.38-.37l-4.99-1.81a.62.62 0 0 1 0-1.18l4.99-1.8a.63.63 0 0 0 .37-.38l1.81-4.99a.63.63 0 0 1 1.18 0l1.8 4.99a.63.63 0 0 0 .38.37l4.99 1.81a.63.63 0 0 1 0 1.18l-4.99 1.8a.63.63 0 0 0-.37.38z" fill="#FFC017">

    </path>
</svg>            </div>
            <div class="feed-length">
                 4 min read
            </div>
            <div class="feed-icon">
                <svg class="icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
    <path d="M11.453 22.107L17.56 16l-6.107-6.12L13.333 8l8 8-8 8-1.88-1.893z"></path>
</svg>            </div>
        </div>
    </div>
    <a class="u-permalink" href="/putting-your-company-in-a-box/" aria-label="Putting Your Company in a Box"></a>
</article>                    </div>

                    <nav class="load-more radius-rounded">
    <button class="button button-secondary gh-loadmore">Load more</button>
</nav>
                </div>

                <div class="subscription-sidebar">
                    <div class="sidebar-wrapper">
                        <div class="sidebar-subs-box-wrapper radius-rounded">
                                <h3 class="single-cta-title">
                                        Friends?
                                </h3>
                                <p class="single-cta-desc">
                                        Sign up to get occasional missives from me.
                                </p>
                            
                                <form class="form-wrapper cover-form inline-form" data-members-form>
        <input class="auth-email" type="email" data-members-email placeholder="Your email..." required="true" autocomplete="false">
        

        <button class="button button-primary form-button" type="submit" aria-label="Subscribe">
            <span class="default">Subscribe</span>
            <span class="loader"><svg class="icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40">
    <path opacity="0.3" fill="currentColor" d="M20.201,5.169c-8.254,0-14.946,6.692-14.946,14.946c0,8.255,6.692,14.946,14.946,14.946 s14.946-6.691,14.946-14.946C35.146,11.861,28.455,5.169,20.201,5.169z M20.201,31.749c-6.425,0-11.634-5.208-11.634-11.634 c0-6.425,5.209-11.634,11.634-11.634c6.425,0,11.633,5.209,11.633,11.634C31.834,26.541,26.626,31.749,20.201,31.749z" />
    <path fill="currentColor" d="M26.013,10.047l1.654-2.866c-2.198-1.272-4.743-2.012-7.466-2.012h0v3.312h0 C22.32,8.481,24.301,9.057,26.013,10.047z">
        <animateTransform attributeType="xml" attributeName="transform" type="rotate" from="0 20 20" to="360 20 20" dur="0.5s" repeatCount="indefinite" />
    </path>
</svg></span>
            <span class="success">Email sent. Check your inbox!</span>
        </button>
    </form>
                            
                        </div>
                        <div class="sidebar-tags">
                            <div class="tag-list-wrapper">
                                        <div class="sidebar-tag-container">
                                            <h3 class="related-title">Popular Topics</h3>
                                            <div class="tag-list">
                                                    <a class="tag-list-item-wrapper radius-rounded" href="/tag/communications/" style="background-color: ;">
    <div class="tag-list-item">
        <span class="tag-list-item-count">communications</span>    
        (1)
    </div>
</a>                                                    <a class="tag-list-item-wrapper radius-rounded" href="/tag/loyalty/" style="background-color: ;">
    <div class="tag-list-item">
        <span class="tag-list-item-count">loyalty</span>    
        (1)
    </div>
</a>                                            </div>
                                        </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </section>
    </main>
</div>


    </div>
    <footer class="site-footer">
    <div class="container ">
        <div class="footer-inner-main">
            <div class="footer-left">
                <a class="logo" href="https://citrano.com">
                        <span class="logo-text">Anthony Citrano</span>
                </a>

                <div class="footer-desc">
                    Founder, operator, and strategic communicator who&#x27;s scaled companies from pre-revenue to the Fortune 20. Based in Los Angeles.
                </div>

                <div class="social">

                </div>

            </div>

            <nav class="footer-right">
                
            </nav>
        </div>
        <div class="footer-copyright">
            Anthony Citrano © 2026. 
            <span class="footer-signature">
                Published with
                <a class="menu-item badge" href="https://ghost.org/" target="_blank" rel="noopener noreferrer"> Ghost</a>
                & <a class="menu-item badge" href="https://themex.studio/singapore/" target="_blank" rel="noopener noreferrer"> Singapore</a>
            </span>
        </div>
    </div>
</footer></div>


<script src="/assets/built/main.min.js?v=9a46108dd1"></script>
<script src="/assets/js/prism.js?v=9a46108dd1"></script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/tocbot/4.10.0/tocbot.min.js"></script>
<script>
    tocbot.init({
        tocSelector: '.toc',
        contentSelector: '.single-content',
        headingSelector: 'h2, h3',
        hasInnerContainers: true,
        ignoreSelector: '.kg-card h2, .kg-card h3, .kg-card h4, .kg-card h5, .kg-card h6, .toc-sidebar h4'
    });
</script>

<style>
  div.footer-desc { display: none; }
  .site-footer a.logo { display: none; }
  .footer-inner-main { display: flex !important; justify-content: center; padding: 20px 0 !important; }
  .footer-copyright { text-align: center; padding: 12px 0 !important; }
  .site-footer { padding: 0 !important; }
  form.cover-form.success .auth-email {  visibility: hidden;   }
  form.cover-form.success .form-button {   position: static; width: 100%; }
</style>

<script>
  document.addEventListener('DOMContentLoaded', function() {
    var footer = document.querySelector('.footer-inner-main');
    if (footer) {
      var social = document.createElement('div');
      social.style.cssText = 'display: flex; gap: 20px; align-items: center;';
      social.innerHTML =
        '<a href="https://x.com/acitrano" target="_blank" rel="noopener" aria-label="X" style="color:#1470AF; text-decoration:none; display:inline-flex;">' +
        '<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg></a>' +
        '<a href="https://www.linkedin.com/in/acitrano" target="_blank" rel="noopener" aria-label="LinkedIn" style="color:#1470AF; text-decoration:none; display:inline-flex;">' +
        '<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24" fill="currentColor"><path d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z"/></svg></a>' +
        '<a href="https://acitrano.bsky.social" target="_blank" rel="noopener" aria-label="Bluesky" style="color:#1470AF; text-decoration:none; display:inline-flex;">' +
        '<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24" fill="currentColor"><path d="M12 10.8c-1.087-2.114-4.046-6.053-6.798-7.995C2.566.944 1.561 1.266.902 1.565.139 1.908 0 3.08 0 3.768c0 .69.378 5.65.624 6.479.815 2.736 3.713 3.66 6.383 3.364.136-.02.275-.039.415-.056-.138.022-.276.04-.415.056-3.912.58-7.387 2.005-2.83 7.078 5.013 5.19 6.87-1.113 7.823-4.308.953 3.195 2.05 9.271 7.733 4.308 4.267-4.308 1.172-6.498-2.74-7.078a8.741 8.741 0 0 1-.415-.056c.14.017.279.036.415.056 2.67.297 5.568-.628 6.383-3.364.246-.828.624-5.79.624-6.478 0-.69-.139-1.861-.902-2.204-.659-.299-1.664-.62-4.3 1.24C16.046 4.748 13.087 8.687 12 10.8z"/></svg></a>' +
        '<a href="https://www.instagram.com/acitrano" target="_blank" rel="noopener" aria-label="Instagram" style="color:#1470AF; text-decoration:none; display:inline-flex;">' +
        '<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24" fill="currentColor"><path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z"/></svg></a>';
      footer.appendChild(social);
    }
    var copyright = document.querySelector('.footer-copyright');
    if (copyright) {
      copyright.innerHTML = copyright.innerHTML.replace(
        /Anthony Citrano © (\d{4})/,
        '© $1 Anthony Citrano'
      );
    }
  });
</script>

</body>
</html>