/* ============================================
   Template 02 - Gradient Wave
   ============================================ */

.template-gradient-wave {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Logo */
.gradient-wave-icon {
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
}

/* Launch Badge */
.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: #00b4d8;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #00b4d8;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Gradient Text */
.text-gradient-wave {
    background: linear-gradient(135deg, #00b4d8 0%, #90e0ef 50%, #caf0f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button */
.btn-wave {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
    border-radius: 0.5rem;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-wave:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}

.btn-wave svg {
    transition: transform 0.3s ease;
}

.btn-wave:hover svg {
    transform: translateX(4px);
}

/* Progress Wave */
.progress-wave {
    background: linear-gradient(90deg, #0077b6 0%, #00b4d8 50%, #90e0ef 100%);
    background-size: 200% 100%;
    animation: wave-progress 3s ease infinite;
}

@keyframes wave-progress {
    0% { background-position: 200% 0; }
    100% { background-position: 0 0; }
}

/* Countdown Glass Override */
.template-gradient-wave .countdown-glass .countdown-item {
    background: rgba(0, 180, 216, 0.1);
    border-color: rgba(0, 180, 216, 0.2);
}

/* Form Override */
.template-gradient-wave .subscribe-form-stacked input:focus {
    border-color: #00b4d8;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
}
