/* full screen */
.coming {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #f6faf9;
    overflow: hidden;
}

/* glow background */
.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(16, 185, 129, 0.25),
        transparent 70%
    );
    top: -200px;
    right: -200px;
    filter: blur(30px);
}

/* content */
.content {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 320px;
}

/* title */
.content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #0f766e;
    margin-bottom: 10px;
}

/* text */
.content p {
    color: #6b7280;
    margin-bottom: 25px;
    font-size: 14px;
}

/* progress wrapper */
.progress-wrap {
    margin-bottom: 30px;
    text-align: left;
}

/* label */
.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #374151;
    margin-bottom: 8px;
}

/* bar background */
.progress-bar {
    width: 100%;
    height: 10px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

/* fill */
.progress-fill {
    width: 65%; /* 👉 ubah sesuai progress */
    height: 100%;
    background: linear-gradient(90deg, #0f766e, #34d399);
    border-radius: 999px;
    transition: width 0.5s ease;
}

/* button */
.btn {
    display: inline-block;
    padding: 10px 18px;
    background: #0f766e;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s;
}

.btn:hover {
    background: #115e59;
    transform: translateY(-2px);
}
