/* founding-100.php specific styles */
.hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 20px 60px;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid var(--accent);
    border-radius: 20px;
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-btn {
    padding: 18px 32px;
    background: var(--accent);
    color: #000;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #ffcc00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 178, 0, 0.35);
}

.small-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-light);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.subtle-btn {
    margin: 20px auto 0;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-light);
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
}

.subtle-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px);
}

.section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--accent);
}

.section p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 800px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 30px;
}

.feature-box h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.feature-box p {
    font-size: 16px;
    color: var(--text-light);
}

.final-cta {
    background: #000;
    border-top: 1px solid var(--border);
    padding: 80px 20px;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

footer {
    border-top: 1px solid var(--border);
    background: #000;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
}

/* MODAL STYLES */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--secondary);
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    overflow: hidden;
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--accent);
}

.close-modal {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

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

.modal-body {
    padding: 0;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .modal-content {
        margin: 10px;
    }
    
    .modal-header h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
}
