/* Button and Call-to-Action Styles */

.btn {
    padding: 1rem 2rem;
    border: 2px solid var(--text-accent);
    background: transparent;
    color: var(--text-accent);
    text-decoration: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--text-accent);
    color: var(--bg-primary);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-accent);
}

.btn-managed {
    background: linear-gradient(135deg, var(--text-question), #ff8c00);
    color: var(--bg-primary);
    border: none;
}

.btn-open-source {
    background: linear-gradient(135deg, var(--text-accent), #00cc66);
    color: var(--bg-primary);
    border: none;
}

/* Deep dive link styling */
.context-deep-dive,
.insight-deep-dive,
.problem-deep-dive,
.macgyver-deep-dive,
.trust-deep-dive {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-accent);
    text-decoration: none;
    background: rgba(0, 255, 136, 0.1);
    padding: 1rem 1.5rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-top: 2rem;
    
    /* Scrapbook link effect */
    transform: rotate(0.3deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.context-deep-dive:hover,
.insight-deep-dive:hover,
.problem-deep-dive:hover,
.macgyver-deep-dive:hover,
.trust-deep-dive:hover {
    background: rgba(0, 255, 136, 0.15);
    transform: rotate(-0.3deg) translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.2);
}

.link-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.context-deep-dive:hover .link-icon,
.insight-deep-dive:hover .link-icon,
.problem-deep-dive:hover .link-icon,
.macgyver-deep-dive:hover .link-icon,
.trust-deep-dive:hover .link-icon {
    transform: scale(1.1);
}

.link-arrow {
    transition: transform 0.3s ease;
}

.context-deep-dive:hover .link-arrow,
.insight-deep-dive:hover .link-arrow,
.problem-deep-dive:hover .link-arrow,
.macgyver-deep-dive:hover .link-arrow,
.trust-deep-dive:hover .link-arrow {
    transform: translateX(3px);
}

/* Mobile: Better link button layout */
@media (max-width: 768px) {
    .context-deep-dive,
    .insight-deep-dive,
    .problem-deep-dive,
    .macgyver-deep-dive,
    .trust-deep-dive {
        padding: 1rem;
        text-align: center;
        transform: none;
        border-radius: 12px;
    }
    
    .link-icon {
        font-size: 1.1rem;
    }
    
    .link-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Path card mobile adjustments */
    .path-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Path CTA buttons mobile */
    .path-cta .btn {
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    
    .path-note {
        text-align: center;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Breakthrough badge mobile fixes */
    .breakthrough-badge {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }
}

/* Call to Action Section */
.cta-section {
    text-align: center;
    padding: 4rem 0;
    animation: fade-up 1s ease-out 2.25s both;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
