@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&family=Lato:wght@300;400;700&display=swap');

.koolgrowth-hero-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* background: #000; Removed for transparency */
    font-family: 'Lato', sans-serif;
}

#koolgrowth-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
}

.koolgrowth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    color: white;
    /* background: rgba(0, 0, 0, 0.3); Removed default dimming for cleanliness, user can add via CSS if needed, or keep it? User asked for transparency. Let's make overlay transparent too or keep slight dim? */
    /* Let's keep slight dim but maybe make it configurable? For now, I'll remove the background color of overlay too to be fully transparent as requested. */
    background: transparent; 
    pointer-events: none;
}

.koolgrowth-overlay * {
    pointer-events: auto;
}

.koolgrowth-navbar {
    padding: 20px 60px;
}

/* Removed logo styles as requested */

.koolgrowth-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    /* margin-top: -60px; Adjusted since navbar/logo might be gone */
}

.koolgrowth-badge {
    border: 1px solid #333;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #33E0C3;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: #33E0C3;
    border-radius: 50%;
}

.koolgrowth-content h1 {
    font-family: 'Funnel Display', sans-serif;
    font-size: 80px;
    line-height: 1.1;
    margin: 0 0 24px 0;
    font-weight: 700;
    letter-spacing: -2px;
    color: white;
}

.koolgrowth-content h1 .highlight {
    color: #666;
}

.subtext {
    color: #888;
    max-width: 600px;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

.subtext strong {
    color: white;
}

.koolgrowth-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background-color: #33E0C3;
    color: #000;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #2bcbb0;
}

.btn-secondary {
    border: 1px solid #333;
    color: white;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.3s;
}

.btn-secondary:hover {
    border-color: #666;
}

@media (max-width: 768px) {
    .koolgrowth-content h1 {
        font-size: 48px;
    }

    .koolgrowth-navbar {
        padding: 20px;
    }
}