/* Funnel Redesign - Premium color system (light theme, Royal Gold accent) */

:root {
    --bg: #FFFFFF;
    --bg-elevated: #F5F5F5;
    --text: #1A1A1A;
    --text-muted: #525252;
    --accent: #B8860B;
    --accent-hover: #9A7209;
    --gold-glow: 0 0 20px rgba(184, 134, 11, 0.2), 0 0 40px rgba(184, 134, 11, 0.1);
    --border: rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --radius-lg: 20px;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Lora', Georgia, serif;
}

/* Shared nav – clean white bar */
.funnel-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #FFFFFF;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.funnel-nav .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.funnel-nav .nav-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text);
    text-decoration: none;
}

.funnel-nav .nav-logo span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-left: 0.5rem;
}

.funnel-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.funnel-nav .nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.funnel-nav .nav-links a:hover {
    color: var(--accent);
}

.funnel-nav .nav-badge-new {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    background: var(--accent);
    padding: 0.15em 0.45em;
    border-radius: 4px;
    margin-left: 0.35rem;
    vertical-align: middle;
}

/* AI Assistant - fixed right side */
.ai-assistant-wrap {
    position: fixed;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    z-index: 999;
}

.ai-trigger {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #9A7209 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.35);
    transition: transform 0.2s, box-shadow 0.3s;
}

.ai-trigger:hover {
    transform: scale(1.05);
    box-shadow: var(--gold-glow), 0 8px 24px rgba(184, 134, 11, 0.45);
}

.ai-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--bg);
    border-left: 1px solid var(--border);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ai-panel.open {
    transform: translateX(0);
}

.ai-panel-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ai-panel-header h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}

.ai-panel-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.ai-panel-body {
    padding: 24px;
    flex: 1;
    overflow-y: auto;
}

.ai-greeting {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.ai-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-option {
    display: block;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, border-color 0.2s;
}

.ai-option:hover {
    background: rgba(184, 134, 11, 0.08);
    border-color: rgba(184, 134, 11, 0.35);
    color: var(--accent);
}

.ai-option i {
    margin-right: 10px;
    color: var(--accent);
}

.ai-ask-wrap {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.ai-ask-input {
    flex: 1;
    padding: 12px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.9rem;
}

.ai-ask-input::placeholder {
    color: var(--text-muted);
}

.ai-ask-input:focus {
    outline: none;
    border-color: var(--accent);
}

.ai-ask-btn {
    padding: 12px 18px;
    background: var(--accent);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.ai-ask-btn:hover {
    background: var(--accent-hover);
}

.ai-answer {
    padding: 14px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.ai-answer a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.ai-answer a:hover {
    text-decoration: underline;
}

.ai-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.ai-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Funnel page sections */
.funnel-page {
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    font-family: var(--font-sans);
    padding-top: 70px;
}

.funnel-season-strip {
    padding: 36px 24px 48px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
}

.funnel-season-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(200px, 320px) 1fr;
    gap: 2rem 3rem;
    align-items: center;
}

.funnel-season-strip-art img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.funnel-season-strip-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.funnel-season-strip-copy p {
    color: var(--text-muted);
    margin: 0 0 1.25rem;
    line-height: 1.65;
    max-width: 36rem;
}

.funnel-season-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
}

.funnel-season-platform {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.funnel-season-platform--youtube {
    background: #ff0000;
    color: #ffffff;
}

.funnel-season-platform--youtube:hover {
    background: #cc0000;
    color: #ffffff;
    transform: translateY(-1px);
}

.funnel-season-platform--spotify {
    background: #1db954;
    color: #ffffff;
}

.funnel-season-platform--spotify:hover {
    background: #169c46;
    color: #ffffff;
    transform: translateY(-1px);
}

.funnel-hero {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    padding: 60px 24px 80px;
    position: relative;
    overflow: hidden;
}

.funnel-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(184, 134, 11, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.funnel-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.funnel-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.funnel-hero .hero-tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 480px;
}

.funnel-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.3);
}

.funnel-cta-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    color: #FFFFFF;
    box-shadow: var(--gold-glow), 0 6px 20px rgba(184, 134, 11, 0.35);
}

.funnel-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
}

.funnel-cta-study-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    background: transparent;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 9999px;
    text-decoration: none;
    border: 2px solid var(--accent);
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.funnel-cta-study-group:hover {
    background: rgba(184, 134, 11, 0.12);
    color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
}

.funnel-hero-image {
    display: flex;
    justify-content: center;
}

.funnel-hero-image img {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(184, 134, 11, 0.3);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

/* Social proof strip */
.social-proof-strip {
    padding: 32px 24px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.social-proof-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.social-proof-item {
    text-align: center;
}

.social-proof-item .number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1.2;
}

.social-proof-item .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Email capture */
.email-capture-section {
    padding: 80px 24px;
}

.email-capture-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.email-capture-inner h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.email-capture-inner p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.email-capture-form {
    display: flex;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
}

.email-capture-form input {
    flex: 1;
    padding: 14px 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 9999px;
    color: var(--text);
    font-size: 1rem;
}

.email-capture-form input::placeholder {
    color: var(--text-muted);
}

.email-capture-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.email-capture-form button {
    padding: 14px 28px;
    background: var(--accent);
    color: #FFFFFF;
    font-weight: 700;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.3);
}

.email-capture-form button:hover {
    background: var(--accent-hover);
    box-shadow: var(--gold-glow), 0 6px 20px rgba(184, 134, 11, 0.35);
}

/* Latest episodes preview */
.episodes-preview {
    padding: 80px 24px;
}

.section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-head p {
    color: var(--text-muted);
    font-size: 1rem;
}

.episodes-preview-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.episode-card-featured {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 0;
}

.episode-card-featured .episode-video {
    aspect-ratio: 16/9;
    background: #000;
}

.episode-card-featured .episode-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.episode-card-featured .episode-info {
    padding: 2rem;
}

.episode-card-featured .episode-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.episode-card-featured .episode-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.episode-card-featured .episode-info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.episode-card-featured .episode-info a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.episode-card-small {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}

.episode-card-small:hover {
    border-color: rgba(184, 134, 11, 0.4);
}

.episode-card-small a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.episode-card-small .thumb {
    aspect-ratio: 16/9;
    background: var(--bg-elevated);
}

.episode-card-small .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.episode-card-small .meta {
    padding: 1rem;
}

.episode-card-small .meta h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.episode-card-small .meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.view-all-episodes {
    text-align: center;
    margin-top: 2rem;
}

.view-all-episodes a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.view-all-episodes a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Ecosystem preview */
.ecosystem-preview {
    padding: 80px 24px;
    background: var(--bg-elevated);
}

.ecosystem-preview-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ecosystem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.ecosystem-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: border-color 0.2s;
}

.ecosystem-card:hover {
    border-color: rgba(184, 134, 11, 0.4);
}

.ecosystem-card .icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: rgba(184, 134, 11, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
}

.ecosystem-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ecosystem-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.ecosystem-card a {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.ecosystem-card a:hover {
    text-decoration: underline;
}

/* Footer – subtle tone to differentiate from body */
.funnel-footer {
    padding: 48px 24px 24px;
    background: #F8F8F8;
    border-top: 1px solid var(--border);
}

.funnel-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.funnel-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.funnel-footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.funnel-footer-links a:hover {
    color: var(--accent);
}

.funnel-footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.funnel-footer-social a {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
    flex-shrink: 0;
    overflow: hidden;
}

.funnel-footer-social a:hover {
    color: var(--accent);
    border-color: rgba(184, 134, 11, 0.4);
}

/* X (Twitter) custom icon – image fits inside the circle like other social icons */
.funnel-footer-social a.footer-social-x {
    background-image: url(/x-twitter.jpeg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.funnel-footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Inner page layout */
.funnel-inner-page {
    padding: 100px 24px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.funnel-inner-page h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.funnel-inner-page .lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Partner / Media kit */
.media-kit-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.media-kit-metric {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.media-kit-metric .value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.media-kit-metric .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Responsive */
.about-host-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 2.5rem; align-items: start; margin: 2rem 0; }
@media (max-width: 768px) {
    .about-host-grid { grid-template-columns: 1fr; text-align: center; }
    .about-host-grid > div:first-child { order: 1; }
    .about-host-grid > div:last-child { order: 2; text-align: left; }
}
@media (max-width: 768px) {
    .funnel-season-strip-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .funnel-season-strip-copy p {
        margin-left: auto;
        margin-right: auto;
    }
    .funnel-season-platforms {
        justify-content: center;
    }
    .funnel-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .funnel-hero .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }
    .funnel-hero .funnel-cta-primary {
        margin: 0 auto;
    }
    .funnel-hero-ctas {
        justify-content: center;
    }
    .social-proof-inner {
        gap: 2rem;
    }
    .social-proof-item .number {
        font-size: 1.5rem;
    }
    .email-capture-form {
        flex-direction: column;
    }
    .episode-card-featured {
        grid-template-columns: 1fr;
    }
    .ecosystem-cards {
        grid-template-columns: 1fr;
    }
    .funnel-nav .nav-links {
        display: none;
    }
    .ai-assistant-wrap {
        right: 16px;
    }
}

/* Mobile nav toggle for funnel */
.funnel-nav .nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .funnel-nav .nav-toggle {
        display: block;
    }
    .funnel-nav .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--bg-elevated);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--border);
        display: none;
    }
    .funnel-nav .nav-links.open {
        display: flex;
    }
}

/* SEO pillar + blog readability */
.hero-seo-link {
    margin-top: 1rem;
    font-size: 1rem;
}
.hero-seo-link a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.hero-seo-link a:hover {
    color: var(--accent-hover);
}

.african-man-pillar,
.blog-article {
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 3rem;
}
.african-man-pillar h1,
.blog-article h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 0.75rem;
}
.african-man-pillar .lead,
.blog-article .lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}
.african-man-pillar h2,
.blog-article h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 2.25rem 0 0.75rem;
    color: var(--text);
}
.african-man-pillar h3,
.blog-article h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--text);
}
.african-man-pillar p,
.blog-article p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0 0 1rem;
}
.african-man-pillar ul,
.blog-article ul {
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
}
.african-man-pillar .article-meta,
.blog-article .article-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.african-man-pillar .video-embed-wrap,
.blog-article .video-embed-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    margin: 2rem 0;
    border: 1px solid var(--border);
}
.african-man-pillar .video-embed-wrap iframe,
.blog-article .video-embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.blog-index-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}
.blog-index-list li {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--border);
}
.blog-index-list h2 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}
.blog-index-list h2 a {
    color: var(--text);
    text-decoration: none;
}
.blog-index-list h2 a:hover {
    color: var(--accent);
}
.blog-index-list .excerpt {
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 0.75rem;
}
.blog-index-list .read-more {
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}
.blog-index-list .read-more:hover {
    text-decoration: underline;
}

/* Host / profile blog — modern accent block + platform cards (works on funnel + site page-main) */
.host-bio-kicker {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 0.35rem;
}
.host-bio-lede {
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.5rem 1.35rem;
    margin: 0 0 2rem;
    background: linear-gradient(145deg, rgba(184, 134, 11, 0.1) 0%, rgba(184, 134, 11, 0.02) 55%, var(--bg-elevated) 100%);
    border: 1px solid var(--border);
}
.host-bio-lede p {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}
.host-bio-lede p strong {
    color: var(--text);
}
.host-quote {
    margin: 2rem 0;
    padding: 1.25rem 1.25rem 1.25rem 1.35rem;
    border-left: 4px solid var(--accent);
    background: var(--bg-elevated);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.55;
    color: var(--text-muted);
}
.host-platform-grid {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}
@media (min-width: 640px) {
    .host-platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.host-platform-card {
    padding: 1.25rem 1.35rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.host-platform-card:hover {
    border-color: rgba(184, 134, 11, 0.35);
    box-shadow: var(--gold-glow);
}
.host-platform-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-family: var(--font-display);
    color: var(--text);
}
.host-platform-card p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}
.host-platform-card a {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--accent);
    text-decoration: none;
}
.host-platform-card a:hover {
    text-decoration: underline;
}
.host-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin: 2rem 0;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    align-items: center;
}
.host-social-row a {
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}
.host-social-row a:hover {
    text-decoration: underline;
}
