/* SOFTWARE VIDEOS PAGE */
.software-hero {
    padding: 12rem 5vw 6rem;
    text-align: center;
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.software-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.software-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    color: var(--cream);
}

.software-hero-title .accent {
    color: var(--gold);
    font-style: italic;
}

.software-hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.software-content {
    background: var(--cream);
    padding: 6rem 5vw;
}

.video-section {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: var(--ink);
    border-radius: 4px;
    box-shadow: 0 40px 80px rgba(10, 10, 15, 0.15);
    border: 1px solid var(--border);
    margin-bottom: 3rem;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.channel-card {
    background: var(--ink);
    border-radius: 4px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 20px 40px rgba(10, 10, 15, 0.1);
}

.channel-info h3 {
    font-family: 'Playfair Display', serif;
    color: var(--cream);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.channel-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.channel-cta {
    background: var(--gold);
    color: var(--ink);
    padding: 1rem 2rem;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.25s;
    white-space: nowrap;
}

.channel-cta:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

@media (max-width: 768px) {
    .channel-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}
